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.
1 parent 314666d commit 9a94b55Copy full SHA for 9a94b55
package.json
@@ -18,12 +18,13 @@
18
"exports": "./dist/lib/index.js",
19
"scripts": {
20
"dev": "nodemon -e js,ts --watch lib --watch tests --exec 'yarn build'",
21
- "build": "tsc",
+ "build": "rm -rf ./dist && tsc",
22
"lint": "npm-run-all \"lint:*\"",
23
"lint:eslint-docs": "npm-run-all \"update:eslint-docs -- --check\"",
24
"lint:js": "eslint .",
25
- "test": "mocha tests --recursive ./dist/tests/",
26
- "update:eslint-docs": "eslint-doc-generator"
+ "test": "yarn build && mocha tests --recursive ./dist/tests/",
+ "update:eslint-docs": "eslint-doc-generator",
27
+ "publish": "yarn build; npm publish"
28
},
29
"dependencies": {
30
"requireindex": "^1.2.0"
0 commit comments