1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/bin/zsh # build npm package wasm-pack build --scope deanrumsby -- --features wasm && # publish to npm cd pkg && npm publish && # publish to crates.io cd ../ && cargo publish && git tag -a $1 -m "Release $1" && git push --tags && echo "Published $1"