We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rimraf
rm
1 parent 763f3a2 commit a68e7baCopy full SHA for a68e7ba
package.json
@@ -52,6 +52,7 @@
52
"eslint": "^7.32.0",
53
"mocha": "^9.1.0",
54
"nyc": "^15.1.0",
55
+ "rimraf": "^3.0.2",
56
"terser": "^5.7.1",
57
"ts-node": "^10.2.1",
58
"typescript": "^4.3.5",
@@ -84,9 +85,10 @@
84
85
},
86
"scripts": {
87
"build": "npm run lint && tsc && terser build/async-iterable-queue.js -c -m -o lib/async-iterable-queue.js --toplevel",
- "clean": "rm -fr .nyc_output/ build/ coverage/ lib/*.d.ts lib/*.js",
88
+ "clean": "rimraf .nyc_output/ build/ coverage/ lib/*.d.ts lib/*.js",
89
"cover": "nyc --check-coverage -r html -r text _mocha",
90
"lint": "eslint *.ts",
91
+ "prebuild": "rimraf build/ lib/*.d.ts lib/*.js",
92
"prepublishOnly": "npm run build",
93
"test": "npm run lint && npm run cover"
94
0 commit comments