workers-rs/worker-build
Nico Zweifel 7ed61c088a
update/use workspace dependencies (wasm_bindgen, etc) (#472)
* update dependencies

* use workspace version

* bump / use workspace versions

* format

* Update Cargo.toml

* format

* Update Cargo.toml

* use newest version
2024-03-11 11:11:59 -04:00
..

worker-build

This is a tool to be used as a custom build command for a Cloudflare Workers project.

# wrangler.toml
# ...

[build]
command = "cargo install -q worker-build && worker-build --release"

[build.upload]
dir    = "build/worker"
format = "modules"
main   = "./shim.mjs"

[[build.upload.rules]]
globs = ["**/*.wasm"]
type  = "CompiledWasm"