|
13 | 13 | "tslint:src": "tslint --project tsconfig.json", |
14 | 14 | "tslint:test": "tslint --config tslint.test.json --project tsconfig.test.json", |
15 | 15 | "tslint": "npm run tslint-check:src && npm run tslint-check:test && npm run tslint:src && npm run tslint:test", |
16 | | - "clean-up": "rimraf .nyc_output && rimraf coverage && rimraf lib", |
17 | | - "compile": "tsc -d", |
| 16 | + "clean-up": "rimraf .nyc_output && rimraf coverage && rimraf lib && rimraf lib-test && rimraf dist-test", |
| 17 | + "compile:src": "tsc -d --importHelpers", |
| 18 | + "compile:test": "tsc -p tsconfig.test.json -d --importHelpers", |
18 | 19 | "dev": "webpack", |
19 | 20 | "build": "webpack --env.production", |
20 | | - "prepare": "npm run clean-up && npm run compile", |
| 21 | + "prepare": "npm run clean-up && npm run compile:src", |
21 | 22 | "prepublishOnly": "publish-please guard", |
22 | 23 | "publish-please": "npm run tslint && npm run autoformat && npm run clean-up && npm run test && publish-please" |
23 | 24 | }, |
|
83 | 84 | "istanbul-instrumenter-loader": "^3.0.1", |
84 | 85 | "karma": "^2.0.5", |
85 | 86 | "karma-chai": "^0.1.0", |
86 | | - "karma-chai-sinon": "^0.1.5", |
87 | 87 | "karma-chrome-launcher": "^2.2.0", |
88 | 88 | "karma-coverage-istanbul-reporter": "^2.0.1", |
89 | 89 | "karma-es6-shim": "^1.0.0", |
|
92 | 92 | "karma-phantomjs-launcher": "^1.0.4", |
93 | 93 | "karma-remap-istanbul": "^0.6.0", |
94 | 94 | "karma-sinon": "^1.0.5", |
| 95 | + "karma-sinon-chai": "^2.0.2", |
95 | 96 | "karma-sourcemap-loader": "^0.3.7", |
96 | 97 | "karma-sourcemap-writer": "^0.1.2", |
97 | 98 | "karma-webpack": "^3.0.0", |
|
0 commit comments