Skip to main content

🧹 Clean Scripts

npm run clean​

Cleans both WebAssembly and Vite build folders.

npm run clean-wasm && npm run clean-js

Ensures the project returns to a β€œfresh” state.

npm run clean-js​

Removes the Vite build output directory:

rm -rf dist

npm run clean-wasm​

Delegates to:

make -C src/wasm clean

This calls the orchestrator Makefile's clean script, which calls the clean script in every WASM module.