We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
npm scripts
1 parent add7283 commit 9d6fd8fCopy full SHA for 9d6fd8f
package.json
@@ -10,13 +10,15 @@
10
"dist/"
11
],
12
"scripts": {
13
- "pretest": "npm run typescript",
14
- "typescript": "tsc --build tsconfig.json",
+ "prepublish ": "npm run clean && npm run build",
+ "build": "tsc -b",
15
+ "clean": "tsc -b --clean",
16
+ "preeslint": "npm run clean && npm run build",
17
"eslint": "eslint src test",
18
+ "pretest": "npm run clean && npm run build",
19
"test": "mocha -r ts-node/register 'test/scripts/**/*.ts'",
20
"test-cov": "c8 --reporter=lcovonly --reporter=text-summary npm test",
- "typedoc": "typedoc --entryPointStrategy expand ./src",
- "prepublish": "npm run typescript"
21
+ "typedoc": "typedoc --entryPointStrategy expand ./src"
22
},
23
"repository": "hexojs/warehouse",
24
"keywords": [
0 commit comments