Skip to content

Commit

Permalink
Merge pull request #2531 from brehen/main
Browse files Browse the repository at this point in the history
fix(templates/../spin.toml): skewer spin application name like a kebab
  • Loading branch information
itowlson authored May 27, 2024
2 parents bdb8c4b + 399d4a6 commit 5bb2ca9
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion templates/http-c/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/http-empty/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
2 changes: 1 addition & 1 deletion templates/http-go/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/http-grain/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/http-php/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/http-rust/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/http-swift/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/http-zig/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/redirect/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/redis-go/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/redis-rust/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down
2 changes: 1 addition & 1 deletion templates/static-fileserver/content/spin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
spin_manifest_version = 2

[application]
name = "{{project-name}}"
name = "{{project-name | kebab_case}}"
version = "0.1.0"
authors = ["{{authors}}"]
description = "{{project-description}}"
Expand Down

0 comments on commit 5bb2ca9

Please sign in to comment.