Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
heroku-buildpack-nodejs
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
heroku-buildpack-nodejs
Commits
9321b6c6
Commit
9321b6c6
authored
Nov 13, 2017
by
Jeremy Morrell
Committed by
Jeremy Morrell
Nov 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump default version of Node to Node 8
parent
925038bb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
binaries.sh
lib/binaries.sh
+1
-1
package.json
test/fixtures/unmet-dep/package.json
+3
-0
run
test/run
+2
-2
No files found.
lib/binaries.sh
View file @
9321b6c6
...
...
@@ -27,7 +27,7 @@ install_yarn() {
}
install_nodejs
()
{
local
version
=
${
1
:-
6
.x
}
local
version
=
${
1
:-
8
.x
}
local dir
=
"
$2
"
echo
"Resolving node version
$version
..."
...
...
test/fixtures/unmet-dep/package.json
View file @
9321b6c6
...
...
@@ -3,6 +3,9 @@
"version"
:
"1.0.0"
,
"description"
:
""
,
"main"
:
"index.js"
,
"engines"
:
{
"node"
:
"6.x"
},
"scripts"
:
{
"start"
:
"node server.js"
},
...
...
test/run
View file @
9321b6c6
...
...
@@ -11,8 +11,8 @@
testNoVersion
()
{
compile
"no-version"
assertCaptured
"engines.node (package.json): unspecified"
assertCaptured
"Resolving node version
6
.x"
assertCaptured
"Downloading and installing node
6
."
assertCaptured
"Resolving node version
8
.x"
assertCaptured
"Downloading and installing node
8
."
assertCapturedSuccess
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment