mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-03 17:48:17 +00:00

The `wasm-pack` too has a known bug where it forgets to add snippets to `package.json`: https://github.com/rustwasm/wasm-pack/issues/1206 Let's fix that with some bash magic.
4 lines
88 B
Bash
Executable file
4 lines
88 B
Bash
Executable file
#!/bin/bash
|
|
|
|
wasm-pack build --no-pack --target nodejs
|
|
cp package.json pkg/package.json
|