Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticatea committed Sep 7, 2015
1 parent 8c38912 commit 53200d3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@
"which": "^1.1.1"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-plugin-espower": "^1.0.0",
"coveralls": "^2.11.4",
"eslint": "^1.2.1",
"eslint-config-mysticatea": "^1.2.0",
"eslint": "^1.3.1",
"eslint-config-mysticatea": "^1.3.0",
"eslint-plugin-mysticatea": "^1.0.2",
"istanbul": "^0.3.18",
"mocha": "^2.2.5",
"istanbul": "^0.3.19",
"mocha": "^2.3.1",
"npm-run-all": "^1.2.8",
"power-assert": "^0.11.0",
"rimraf": "^2.4.2"
"power-assert": "^1.0.0",
"rimraf": "^2.4.3"
},
"repository": {
"type": "git",
Expand Down
7 changes: 4 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ export default function runAll(patternOrPatterns, options = {}) {
`Matched tasks not found: ${patterns.join(", ")}`));
}

return parallel
? runAllInParallel(tasks, stdin, stdout, stderr)
: runAllSequencially(tasks, stdin, stdout, stderr);
return (
parallel ? runAllInParallel(tasks, stdin, stdout, stderr) :
/* else */ runAllSequencially(tasks, stdin, stdout, stderr)
);
}

0 comments on commit 53200d3

Please sign in to comment.