Skip to content

Commit

Permalink
fix(help): Process no longer exits before output is done
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed May 6, 2016
1 parent bf877ab commit ac09fc3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion bin/p-s.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ program
.parse(process.argv)

if (process.argv.length < 3) {
program.help()
program.outputHelp()
return
}

var scriptsAndArgs = getScriptsAndArgs(program)
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@
"spawn-command": "0.0.2"
},
"devDependencies": {
"all-contributors-cli": "2.0.0-beta11",
"all-contributors-cli": "3.0.1",
"ava": "0.14.0",
"babel-cli": "6.7.7",
"babel-cli": "6.8.0",
"babel-eslint": "6.0.4",
"babel-plugin-rewire": "1.0.0-rc-2",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-2": "6.5.0",
"babel-register": "6.7.2",
"babel-register": "6.8.0",
"codecov": "1.0.1",
"commitizen": "2.8.1",
"condition-node-version": "1.3.0",
Expand All @@ -59,12 +59,12 @@
"eslint": "2.9.0",
"eslint-config-kentcdodds": "6.2.1",
"ghooks": "1.2.1",
"nyc": "6.4.0",
"nyc": "6.4.3",
"opt-cli": "1.4.2",
"p-s": "*",
"rimraf": "2.5.2",
"semantic-release": "^4.3.5",
"sinon": "1.17.3",
"sinon": "1.17.4",
"validate-commit-msg": "2.6.1"
},
"eslintConfig": {
Expand Down

0 comments on commit ac09fc3

Please sign in to comment.