Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _templates/cloudflare/cron-go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dev:

.PHONY: build
build:
go run github.com/syumai/workers/cmd/workers-assets-gen@v0.28.1 -mode=go
go run github.com/syumai/workers/cmd/workers-assets-gen -mode=go
GOOS=js GOARCH=wasm go build -o ./build/app.wasm .

.PHONY: deploy
Expand Down
2 changes: 1 addition & 1 deletion _templates/cloudflare/cron-tinygo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dev:

.PHONY: build
build:
go run github.com/syumai/workers/cmd/workers-assets-gen@v0.28.1
go run github.com/syumai/workers/cmd/workers-assets-gen
tinygo build -o ./build/app.wasm -target wasm -no-debug ./...

.PHONY: deploy
Expand Down
2 changes: 1 addition & 1 deletion _templates/cloudflare/pages-tinygo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dev:

.PHONY: build
build:
go run github.com/syumai/workers/cmd/workers-assets-gen@v0.28.1
go run github.com/syumai/workers/cmd/workers-assets-gen
tinygo build -o ./build/app.wasm -target wasm -no-debug ./...

.PHONY: deploy
Expand Down
2 changes: 1 addition & 1 deletion _templates/cloudflare/worker-go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dev:

.PHONY: build
build:
go run github.com/syumai/workers/cmd/workers-assets-gen@v0.28.1 -mode=go
go run github.com/syumai/workers/cmd/workers-assets-gen -mode=go
GOOS=js GOARCH=wasm go build -o ./build/app.wasm .

.PHONY: deploy
Expand Down
2 changes: 1 addition & 1 deletion _templates/cloudflare/worker-tinygo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dev:

.PHONY: build
build:
go run github.com/syumai/workers/cmd/workers-assets-gen@v0.28.1
go run github.com/syumai/workers/cmd/workers-assets-gen
tinygo build -o ./build/app.wasm -target wasm -no-debug ./...

.PHONY: deploy
Expand Down
Loading