Skip to content

Commit 395a7f8

Browse files
author
Nate Goldman
committed
Merge pull request #2 from paulcpederson/master
Add standard as dependency
2 parents e588b7e + f94055a commit 395a7f8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

bin/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ inquirer.prompt(questions, function (auth) {
8080
var whitelist = Object.keys(defaults)
8181
var options = extend(getDefaults(), argv)
8282

83-
Object.keys(options).forEach(function(key){
83+
Object.keys(options).forEach(function(key) {
8484
if (whitelist.indexOf(key) === -1) delete options[key]
8585
})
8686

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,8 @@
2929
"scripts": {
3030
"gh-release": "node ./bin/cli.js",
3131
"test": "standard"
32+
},
33+
"devDependencies": {
34+
"standard": "^2.6.0"
3235
}
3336
}

0 commit comments

Comments
 (0)