@stacks/clarinet-sdk-wasm
v3.12.0
Published
The core lib that powers @stacks/clarinet-sdk
Downloads
1,569
Readme
Clarity SDK WASM
This component exposes Clarinet features to a JS interface through wasm-bindgen. It's built with
wasm-pack.
It powers @stacks/clarinet-sdk and
@stacks/clarinet-sdk-browser.
Contributing
Build package
Install wasm-pack.
In the root directory of Clarinet, run the following command to build the packages for Node.js and
the browser. Under the hood, it will run wasm-pack build twice, once for each target.
npm run build:sdk-wasmAlternatively, it's also possible to build the packages separately. It should only be done for development purpose.
Build for node
wasm-pack build --release --scope stacks --out-dir pkg-node --target nodejsBuild for the browser
wasm-pack build --release --scope stacks --out-dir pkg-browser --target webRelease
The package is built twice with wasm-pack as it can't target node and web at the same time.
The following script will build for both target, it will also rename the package name for the
browser build.
npm run build:sdk-wasmOnce built, the packages can be released by running the following command. Note that by default we release with the beta tag.
npm run publish:sdk-wasm