There was an error while loading. Please reload this page.
1 parent 5782a56 commit 73cb4dfCopy full SHA for 73cb4df
2 files changed
Makefile
@@ -0,0 +1,10 @@
1
+.PHONY: clean
2
+
3
+clean:
4
+ cargo clean
5
+ rm -rf bin pkg tmp
6
+ rm -f wasm-pack.log
7
+ rm -rf tests/node/node_modules tests/node/pkg tests/node/dist tests/node/build tests/node/coverage tests/node/.cache
8
+ find . -name '*.log' -type f -delete
9
+ find . -name '*.test' -type f -delete
10
+ find . -name '*.profraw' -type f -delete
tests/node/package.json
@@ -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",
0 commit comments