From cd485f7d745395b8a0e2d13003975d006c460f80 Mon Sep 17 00:00:00 2001 From: syumai Date: Thu, 11 Jan 2024 20:54:57 +0900 Subject: [PATCH] update workers-assets-gen command version in templates --- _templates/cloudflare/pages-tinygo/Makefile | 2 +- _templates/cloudflare/worker-go/Makefile | 2 +- _templates/cloudflare/worker-tinygo/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_templates/cloudflare/pages-tinygo/Makefile b/_templates/cloudflare/pages-tinygo/Makefile index ddd1c52..302df0d 100644 --- a/_templates/cloudflare/pages-tinygo/Makefile +++ b/_templates/cloudflare/pages-tinygo/Makefile @@ -4,7 +4,7 @@ dev: .PHONY: build build: - go run github.com/syumai/workers/cmd/workers-assets-gen@v0.21.0 + go run github.com/syumai/workers/cmd/workers-assets-gen@v0.22.0 tinygo build -o ./build/app.wasm -target wasm -no-debug ./... .PHONY: deploy diff --git a/_templates/cloudflare/worker-go/Makefile b/_templates/cloudflare/worker-go/Makefile index e516a64..9079e85 100644 --- a/_templates/cloudflare/worker-go/Makefile +++ b/_templates/cloudflare/worker-go/Makefile @@ -4,7 +4,7 @@ dev: .PHONY: build build: - go run github.com/syumai/workers/cmd/workers-assets-gen@v0.21.0 -mode=go + go run github.com/syumai/workers/cmd/workers-assets-gen@v0.22.0 -mode=go GOOS=js GOARCH=wasm go build -o ./build/app.wasm . .PHONY: deploy diff --git a/_templates/cloudflare/worker-tinygo/Makefile b/_templates/cloudflare/worker-tinygo/Makefile index f0afc9b..6ded055 100644 --- a/_templates/cloudflare/worker-tinygo/Makefile +++ b/_templates/cloudflare/worker-tinygo/Makefile @@ -4,7 +4,7 @@ dev: .PHONY: build build: - go run github.com/syumai/workers/cmd/workers-assets-gen@v0.21.0 + go run github.com/syumai/workers/cmd/workers-assets-gen@v0.22.0 tinygo build -o ./build/app.wasm -target wasm -no-debug ./... .PHONY: deploy