setup: add clean scripts
This commit is contained in:
parent
6b85ef79ae
commit
0a9f3d8e63
|
@ -24,7 +24,8 @@
|
||||||
"test": "mocha",
|
"test": "mocha",
|
||||||
"proto": "run-s 'proto:*'",
|
"proto": "run-s 'proto:*'",
|
||||||
"proto:lint": "buf lint",
|
"proto:lint": "buf lint",
|
||||||
"proto:build": "buf generate"
|
"proto:build": "buf generate",
|
||||||
|
"clean": "rm -rf node_modules && rm -rf dist"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bn.js": "^5.2.0",
|
"bn.js": "^5.2.0",
|
||||||
|
|
|
@ -21,7 +21,8 @@
|
||||||
"build:types": "tsc --emitDeclarationOnly",
|
"build:types": "tsc --emitDeclarationOnly",
|
||||||
"typecheck": "tsc --noEmit",
|
"typecheck": "tsc --noEmit",
|
||||||
"lint": "eslint src",
|
"lint": "eslint src",
|
||||||
"format": "prettier --write src"
|
"format": "prettier --write src",
|
||||||
|
"clean": "rm -rf node_modules && rm -rf dist"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@hcaptcha/react-hcaptcha": "^1.0.0",
|
"@hcaptcha/react-hcaptcha": "^1.0.0",
|
||||||
|
|
Loading…
Reference in New Issue