mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-07 10:14:21 +01:00
12 lines
222 B
Bash
Executable File
12 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TARGET=${1:-nodejs}
|
|
FEATURE="nodejs"
|
|
|
|
if [ "$TARGET" = "web" ]; then
|
|
FEATURE="web"
|
|
fi
|
|
|
|
wasm-pack build --no-pack --target $TARGET --no-default-features --features $FEATURE
|
|
cp package.json pkg/package.json
|