Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.PHONY: clean

clean:
cargo clean
rm -rf bin pkg tmp
rm -f wasm-pack.log
rm -rf tests/node/node_modules tests/node/pkg tests/node/dist tests/node/build tests/node/coverage tests/node/.cache
find . -name '*.log' -type f -delete
find . -name '*.test' -type f -delete
find . -name '*.profraw' -type f -delete
3 changes: 2 additions & 1 deletion tests/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "wasm-pack build --target nodejs --all-features",
"test": "jest"
"test": "jest",
"clean": "rm -rf node_modules pkg dist build coverage .cache *.log"
},
"devDependencies": {
"@types/jest": "^30.0.0",
Expand Down
Loading