This repository was archived by the owner on Aug 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 164
164
"test.format" : " prettier . --check" ,
165
165
"lint" : " eslint . --fix" ,
166
166
"test.lint" : " npm run babel && eslint ." ,
167
- "test" : " npm run babel && atom --test spec" ,
167
+ "test.unit" : " npm run babel && atom --test spec" ,
168
+ "test.bundle" : " npm run build && atom --test ./spec/linter-eslint-spec.js" ,
169
+ "test" : " npm run test.unit && npm run test.bundle" ,
168
170
"clean" : " shx rm -rf dist" ,
169
171
"babel" : " cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=false babel src --out-dir dist --delete-dir-on-start" ,
170
- "dev" : " npm run babel && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w" ,
171
- "build" : " npm run babel && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c " ,
172
+ "dev" : " npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w" ,
173
+ "build" : " npm run clean && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c " ,
172
174
"prepare" : " npm run build" ,
173
175
"build-commit" : " build-commit -o dist"
174
176
},
You can’t perform that action at this time.
0 commit comments