e7929d6f6b
* wip * post-cherry pick fixes * wip * wip * using sqlite-based indexeddb shim * running nymClient in worker thread * improved received handling * building node mix-fetch * fixed mix fetch request constructor if args[1] == undefined * fixed build target * nodejs origin bypass * mix fetch in node but I dont think anyone should use it over normal client... * target locking * fixed post-rebasing issues
7 lines
423 B
Makefile
7 lines
423 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-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
|