Skip to content

Commit 399d4a6

Browse files
committed
fix(templates/spin.toml): skewer application name like a kebab
Signed-off-by: Marius Kluften <[email protected]>
1 parent 418129a commit 399d4a6

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

templates/http-c/content/spin.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spin_manifest_version = 2
22

33
[application]
4-
name = "{{project-name}}"
4+
name = "{{project-name | kebab_case}}"
55
version = "0.1.0"
66
authors = ["{{authors}}"]
77
description = "{{project-description}}"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spin_manifest_version = 2
22

33
[application]
4-
name = "{{project-name}}"
4+
name = "{{project-name | kebab_case}}"
55
version = "0.1.0"
66
authors = ["{{authors}}"]
77
description = "{{project-description}}"

templates/http-go/content/spin.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spin_manifest_version = 2
22

33
[application]
4-
name = "{{project-name}}"
4+
name = "{{project-name | kebab_case}}"
55
version = "0.1.0"
66
authors = ["{{authors}}"]
77
description = "{{project-description}}"

templates/http-grain/content/spin.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spin_manifest_version = 2
22

33
[application]
4-
name = "{{project-name}}"
4+
name = "{{project-name | kebab_case}}"
55
version = "0.1.0"
66
authors = ["{{authors}}"]
77
description = "{{project-description}}"

templates/http-php/content/spin.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spin_manifest_version = 2
22

33
[application]
4-
name = "{{project-name}}"
4+
name = "{{project-name | kebab_case}}"
55
version = "0.1.0"
66
authors = ["{{authors}}"]
77
description = "{{project-description}}"

templates/http-rust/content/spin.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spin_manifest_version = 2
22

33
[application]
4-
name = "{{project-name}}"
4+
name = "{{project-name | kebab_case}}"
55
version = "0.1.0"
66
authors = ["{{authors}}"]
77
description = "{{project-description}}"

templates/http-swift/content/spin.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spin_manifest_version = 2
22

33
[application]
4-
name = "{{project-name}}"
4+
name = "{{project-name | kebab_case}}"
55
version = "0.1.0"
66
authors = ["{{authors}}"]
77
description = "{{project-description}}"

templates/http-zig/content/spin.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spin_manifest_version = 2
22

33
[application]
4-
name = "{{project-name}}"
4+
name = "{{project-name | kebab_case}}"
55
version = "0.1.0"
66
authors = ["{{authors}}"]
77
description = "{{project-description}}"

templates/redirect/content/spin.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spin_manifest_version = 2
22

33
[application]
4-
name = "{{project-name}}"
4+
name = "{{project-name | kebab_case}}"
55
version = "0.1.0"
66
authors = ["{{authors}}"]
77
description = "{{project-description}}"

templates/redis-go/content/spin.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spin_manifest_version = 2
22

33
[application]
4-
name = "{{project-name}}"
4+
name = "{{project-name | kebab_case}}"
55
version = "0.1.0"
66
authors = ["{{authors}}"]
77
description = "{{project-description}}"

0 commit comments

Comments
 (0)