Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Aug 9, 2017
1 parent 3647ccb commit 7d0bb4f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion commands/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function * run (context) {
execArgv.push(context.args.processname)
} else {
let procfile = context.flags.procfile || 'Procfile'
let procHash = require('foreman/lib/procfile.js').loadProc(procfile)
let procHash = require('@heroku/foreman/lib/procfile.js').loadProc(procfile)
let processes = Object.keys(procHash).filter((x) => x !== 'release')
execArgv.push(processes.join(','))
}
Expand Down
2 changes: 1 addition & 1 deletion lib/run_foreman.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
require('foreman/nf.js')
require('@heroku/foreman/nf.js')
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"url": "https://github.com/heroku/heroku-local/issues"
},
"dependencies": {
"@heroku/foreman": "^2.0.1",
"co": "^4.6.0",
"foreman": "https://github.com/heroku/node-foreman.git",
"heroku-cli-util": "^6.2.0",
"lodash.flatten": "^4.4.0"
},
Expand Down
2 changes: 1 addition & 1 deletion test/version.bats
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ setup() {
run heroku local:version
echo $output
[ "$status" -eq 0 ]
[[ "$output" =~ "2.0.0" ]]
[[ "$output" =~ "2.0" ]]
}
9 changes: 9 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
# yarn lockfile v1


"@heroku/foreman@^2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@heroku/foreman/-/foreman-2.0.1.tgz#093d96f181e1b7d1dcd6984cd71654c8d036366f"
dependencies:
commander "~2.9.0"
http-proxy "~1.11.1"
mustache "^2.2.1"
shell-quote "~1.4.2"

acorn-jsx@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
Expand Down

0 comments on commit 7d0bb4f

Please sign in to comment.