Skip to content

Commit 5bb2ca9

Browse files
authored
Merge pull request #2531 from brehen/main
fix(templates/../spin.toml): skewer spin application name like a kebab
2 parents bdb8c4b + 399d4a6 commit 5bb2ca9

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)