Skip to content

Commit

Permalink
chore: Some scripts fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
finom committed Jan 16, 2020
1 parent f4edfc4 commit f1db7a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "index",
"scripts": {
"test": "npm run unit",
"unit": "COVERALLS_SERVICE_JOB_ID=seemple-router ../../node_modules/.bin/babel-node ../../node_modules/.bin/babel-istanbul cover test/index.js && cat ./coverage/lcov.info | ../../node_modules/coveralls/bin/coveralls.js",
"unit": "../../node_modules/.bin/babel-node ../../node_modules/.bin/babel-istanbul cover test/index.js && cat ./coverage/lcov.info | COVERALLS_SERVICE_JOB_ID=seemple-router ../../node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ./test ./src",
"compile-npm": "babel src -d .",
"build": "webpack",
Expand Down
2 changes: 1 addition & 1 deletion packages/seemple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scripts": {
"test": "npm run node-cover && npm run check-coverage",
"node-test": "BABEL_ENV=test ../../node_modules/.bin/babel-node test/node-test/jasmine.js",
"node-cover": "COVERALLS_SERVICE_JOB_ID=seemple BABEL_ENV=test ../../node_modules/.bin/babel-node ../../node_modules/.bin/babel-istanbul cover test/node-test/jasmine.js && cat ./coverage/lcov.info | ../../node_modules/coveralls/bin/coveralls.js",
"node-cover": "BABEL_ENV=test ../../node_modules/.bin/babel-node ../../node_modules/.bin/babel-istanbul cover test/node-test/jasmine.js && cat ./coverage/lcov.info | COVERALLS_SERVICE_JOB_ID=seemple ../../node_modules/coveralls/bin/coveralls.js",
"check-coverage": "babel-istanbul check-coverage --lines 95",
"watch": "webpack --config ./webpack.config.js --watch",
"watch-browser-test": "webpack --config test/webpack-test.config.js --watch",
Expand Down

0 comments on commit f1db7a8

Please sign in to comment.