Skip to content

Commit

Permalink
update cli-engine
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Mar 14, 2017
1 parent 4fc5b73 commit 4ed8c89
Show file tree
Hide file tree
Showing 4 changed files with 707 additions and 336 deletions.
2 changes: 1 addition & 1 deletion bin/run
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ get_script_dir () {
}
DIR=$(get_script_dir)

node --harmony-async-await --use_strict $DIR/run.js $*
node $DIR/run.js $*
9 changes: 7 additions & 2 deletions bin/run.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
require('cli-engine')({
disableUpdate: `Update CLI with \`npm update -g heroku-cli\``
const path = require('path')
const CLI = require('cli-engine').default
const cli = new CLI({
root: path.join(__dirname, '..'),
updateDisabled: `Update CLI with \`npm update -g heroku-cli\``,
argv: process.argv.slice(1)
})
cli.run()
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@
]
},
"dependencies": {
"cli-engine": "1.0.4",
"heroku-apps": "2.1.25",
"heroku-certs": "1.1.26",
"heroku-cli-addons": "1.2.8",
"heroku-cli-oauth": "2.0.6",
"heroku-fork": "4.1.14",
"heroku-git": "2.5.10",
"heroku-local": "5.1.8",
"heroku-orgs": "1.5.5",
"heroku-pg": "2.0.16",
"heroku-pipelines": "1.3.1",
"heroku-redis": "1.2.8",
"heroku-run": "3.4.3",
"heroku-spaces": "2.6.0",
"heroku-status": "3.0.5"
"cli-engine": "1.0.5",
"heroku-apps": "2.1.26",
"heroku-certs": "1.1.27",
"heroku-cli-addons": "1.2.10",
"heroku-cli-oauth": "2.0.7",
"heroku-fork": "4.1.17",
"heroku-git": "2.5.11",
"heroku-local": "5.1.9",
"heroku-orgs": "1.5.6",
"heroku-pg": "2.0.17",
"heroku-pipelines": "1.3.2",
"heroku-redis": "1.2.9",
"heroku-run": "3.4.4",
"heroku-spaces": "2.6.1",
"heroku-status": "3.0.6"
},
"homepage": "https://cli.heroku.com",
"keywords": [
Expand Down
Loading

0 comments on commit 4ed8c89

Please sign in to comment.