chore(node): allow current node version
node current is 6.6.0 see https://github.com/nodejs/LTS#lts_schedule
This commit is contained in:
parent
5509453e72
commit
1225ecfb14
|
@ -1,7 +1,7 @@
|
||||||
language: node_js
|
language: node_js
|
||||||
sudo: false
|
sudo: false
|
||||||
node_js:
|
node_js:
|
||||||
- '5.4.1'
|
- '6.6.0'
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
# firefox: "38.0"
|
# firefox: "38.0"
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// This is to ensure that we catch env issues before we error while requiring other dependencies.
|
// This is to ensure that we catch env issues before we error while requiring other dependencies.
|
||||||
require('./tools/check-environment')({
|
require('./tools/check-environment')({
|
||||||
requiredNpmVersion: '>=3.5.3 <4.0.0',
|
requiredNpmVersion: '>=3.5.3 <4.0.0',
|
||||||
requiredNodeVersion: '>=5.4.1 <6.0.0',
|
requiredNodeVersion: '>=5.4.1 <7.0.0',
|
||||||
});
|
});
|
||||||
|
|
||||||
const gulp = require('gulp');
|
const gulp = require('gulp');
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
"bugs": "https://github.com/angular/angular/issues",
|
"bugs": "https://github.com/angular/angular/issues",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 5.4.1 < 6"
|
"node": ">= 5.4.1 < 7"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
Loading…
Reference in New Issue