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 3efc263 commit 39b6b12Copy full SHA for 39b6b12
package.json
@@ -15,8 +15,11 @@
15
"test.format": "prettier . --check",
16
"lint": "eslint . --fix",
17
"test.lint": "eslint .",
18
- "test": "npm run build && atom --test spec",
+ "test": "npm run test.unit && npm run test.integration",
19
+ "test.unit": "npm run tsc && atom --test spec",
20
+ "test.integration": "npm run build && atom --test spec",
21
"clean": "shx rm -rf dist",
22
+ "tsc": "tsc -p ./lib/tsconfig.json",
23
"dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w",
24
"build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c",
25
"build-commit": "build-commit -o dist",
0 commit comments