Commit 9321b6c6 authored by Jeremy Morrell's avatar Jeremy Morrell Committed by Jeremy Morrell

Bump default version of Node to Node 8

parent 925038bb
......@@ -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..."
......
......@@ -3,6 +3,9 @@
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "6.x"
},
"scripts": {
"start": "node server.js"
},
......
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment