b97f8c1145
* Bug fix `mixFetch` build * Batch integration tests for mixFetch * Bump RC version * Tidy up READMEs * Bump version to RC4 and fix up a few interfaces * Bump version to RC5 and fix opts * NodeJS SDK * mixFetch usage example * Update internal dev tester readme * Add NodeJS packages to publish script * Update lock file * Upgrade `lerna` --------- Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com>
13 lines
529 B
Makefile
13 lines
529 B
Makefile
build:
|
|
wasm-pack build --scope nymproject --target web --out-dir ../../dist/wasm/client
|
|
wasm-opt -Oz -o ../../dist/wasm/client/nym_client_wasm_bg.wasm ../../dist/wasm/client/nym_client_wasm_bg.wasm
|
|
|
|
build-rust-node:
|
|
wasm-pack build --scope nymproject --target nodejs --out-dir ../../dist/node/wasm/client
|
|
wasm-opt -Oz -o ../../dist/node/wasm/client/nym_client_wasm_bg.wasm ../../dist/node/wasm/client/nym_client_wasm_bg.wasm
|
|
|
|
build-package-json-node:
|
|
node build-node.mjs
|
|
|
|
build-node: build-rust-node build-package-json-node
|