Skip to content

Commit ac09fc3

Browse files
author
Kent C. Dodds
committed
fix(help): Process no longer exits before output is done
1 parent bf877ab commit ac09fc3

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

bin/p-s.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ program
2525
.parse(process.argv)
2626

2727
if (process.argv.length < 3) {
28-
program.help()
28+
program.outputHelp()
29+
return
2930
}
3031

3132
var scriptsAndArgs = getScriptsAndArgs(program)

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343
"spawn-command": "0.0.2"
4444
},
4545
"devDependencies": {
46-
"all-contributors-cli": "2.0.0-beta11",
46+
"all-contributors-cli": "3.0.1",
4747
"ava": "0.14.0",
48-
"babel-cli": "6.7.7",
48+
"babel-cli": "6.8.0",
4949
"babel-eslint": "6.0.4",
5050
"babel-plugin-rewire": "1.0.0-rc-2",
5151
"babel-preset-es2015": "6.6.0",
5252
"babel-preset-stage-2": "6.5.0",
53-
"babel-register": "6.7.2",
53+
"babel-register": "6.8.0",
5454
"codecov": "1.0.1",
5555
"commitizen": "2.8.1",
5656
"condition-node-version": "1.3.0",
@@ -59,12 +59,12 @@
5959
"eslint": "2.9.0",
6060
"eslint-config-kentcdodds": "6.2.1",
6161
"ghooks": "1.2.1",
62-
"nyc": "6.4.0",
62+
"nyc": "6.4.3",
6363
"opt-cli": "1.4.2",
6464
"p-s": "*",
6565
"rimraf": "2.5.2",
6666
"semantic-release": "^4.3.5",
67-
"sinon": "1.17.3",
67+
"sinon": "1.17.4",
6868
"validate-commit-msg": "2.6.1"
6969
},
7070
"eslintConfig": {

0 commit comments

Comments
 (0)