Skip to content

Commit d41265c

Browse files
committed
Restore to use myself
- This had turned off temporally to support Node 0.10.x.
1 parent 3c69c0d commit d41265c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
"scripts": {
1616
"clean": "rimraf lib",
1717
"lint": "eslint src",
18-
"build": "npm run clean && npm run lint && npm run build:babel",
18+
"build": "npm-run-all clean lint build:babel",
1919
"build:babel": "babel src --out-dir lib",
20-
"test": "npm run build && npm run test:mocha",
20+
"test": "npm-run-all build test:mocha",
2121
"test:mocha": "mocha test/*.js --compilers js:espower-babel/guess --timeout 30000 --colors",
22-
"testing": "npm run clean && npm run testing:build && npm run testing:mocha",
22+
"testing": "npm-run-all clean --parallel testing:*",
2323
"testing:build": "npm run build:babel -- --watch --source-maps-inline",
2424
"testing:mocha": "npm run test:mocha -- --watch --growl",
2525
"test-task:env-check": "node test/tasks/env-check.js",
@@ -40,6 +40,7 @@
4040
"eslint": "^0.19.0",
4141
"espower-babel": "^2.0.0",
4242
"mocha": "^2.2.4",
43+
"npm-run-all": "^1.2.1",
4344
"power-assert": "^0.10.2",
4445
"rimraf": "^2.3.2",
4546
"shelljs": "^0.4.0"

0 commit comments

Comments
 (0)