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 403131d commit a3760e5Copy full SHA for a3760e5
package.json
@@ -4,8 +4,9 @@
4
"description": "PageBuilder module",
5
"scripts": {
6
"test:static": "tslint --project tsconfig.json",
7
- "test:static:log": "npm run ts:errors 2>&1 | tee tsc-errors.txt && npm run test:static 2>&1 | tee tslint-errors.txt",
+ "test:static:log": "set -o pipefail; npm run test:static | tee tslint-errors.txt",
8
"ts:errors": "tsc --noEmit",
9
+ "test:errors:log": "set -o pipefail; npm run ts:errors | tee tsc-errors.txt",
10
"ts:errors:watch": "npm run ts:errors -- -watch",
11
"ts:lint": "tslint --fix --project .",
12
"ts:defs": "node ./dev/dts-generator.js",
0 commit comments