Skip to content

Commit 1225ecf

Browse files
vicbalexeagle
authored andcommitted
chore(node): allow current node version
node current is 6.6.0 see https://github.com/nodejs/LTS#lts_schedule
1 parent 5509453 commit 1225ecf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.4.1
1+
6.6.0

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- '5.4.1'
4+
- '6.6.0'
55

66
addons:
77
# firefox: "38.0"

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// This is to ensure that we catch env issues before we error while requiring other dependencies.
55
require('./tools/check-environment')({
66
requiredNpmVersion: '>=3.5.3 <4.0.0',
7-
requiredNodeVersion: '>=5.4.1 <6.0.0',
7+
requiredNodeVersion: '>=5.4.1 <7.0.0',
88
});
99

1010
const gulp = require('gulp');

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"bugs": "https://github.com/angular/angular/issues",
99
"license": "MIT",
1010
"engines": {
11-
"node": ">= 5.4.1 < 6"
11+
"node": ">= 5.4.1 < 7"
1212
},
1313
"repository": {
1414
"type": "git",

0 commit comments

Comments
 (0)