Skip to content

Commit

Permalink
Bumps deps and cleans new linting rules.
Browse files Browse the repository at this point in the history
  • Loading branch information
skellock committed Apr 6, 2017
1 parent 2e5a474 commit 2c0fc1d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions packages/gluegun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
"app-module-path": "^2.2.0",
"ascii-table": "^0.0.9",
"autobind-decorator": "^1.3.4",
"clipboardy": "^1.0.2",
"clipboardy": "^1.1.0",
"colors": "^1.1.2",
"cross-spawn": "^5.1.0",
"ejs": "^2.5.5",
"enquirer": "^0.4.1",
"execa": "^0.6.2",
"fs-jetpack": "^0.13.1",
"fs-jetpack": "^0.13.3",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.lowercase": "^4.3.0",
Expand All @@ -51,7 +51,7 @@
"lodash.uppercase": "^4.3.0",
"lodash.upperfirst": "^4.3.1",
"minimist": "^1.2.0",
"ora": "^1.1.0",
"ora": "^1.2.0",
"prompt-autocompletion": "^0.1.1",
"prompt-checkbox": "^0.4.2",
"prompt-confirm": "^0.2.1",
Expand All @@ -65,14 +65,14 @@
"ramdasauce": "^1.2.0",
"semver": "^5.3.0",
"toml": "^2.3.1",
"which": "^1.2.12"
"which": "^1.2.14"
},
"devDependencies": {
"ava": "^0.18.1",
"babel-eslint": "^7.2.0",
"coveralls": "^2.12.0",
"nyc": "^10.1.2",
"standard": "^9.0.2"
"ava": "^0.19.0",
"babel-eslint": "^7.2.1",
"coveralls": "^2.13.0",
"nyc": "^10.2.0",
"standard": "^10.0.0"
},
"ava": {},
"standard": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ async function command (context) {
colors: [ 'red', 'green', 'blue' ]
}

return await context.template.generate({ template, target, props })
return context.template.generate({ template, target, props })
}

module.exports = command
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ async function command (context) {
const props = { thing: context.parameters.first }
const directory = `${__dirname}/../custom-directory`

return await context.template.generate({ template, target, props, directory })
return context.template.generate({ template, target, props, directory })
}

module.exports = command

0 comments on commit 2c0fc1d

Please sign in to comment.