X Tutup
Skip to content

Commit caafb41

Browse files
committed
build(node): upgrade to node 5.4.1
1 parent 31b81a7 commit caafb41

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.nvmrc

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

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- '4.2.1'
4+
- '5.4.1'
55

66
branches:
77
except:
@@ -60,7 +60,7 @@ addons:
6060
firefox: "38.0"
6161

6262
before_install:
63-
- npm install -g npm@3.5.2
63+
- npm install -g npm@3.5.3
6464
- node tools/analytics/build-analytics start ci job
6565
- node tools/analytics/build-analytics start ci before_install
6666
- echo ${TSDRC} > .tsdrc

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
machine:
22
node:
3-
version: 4.2.1
3+
version: 5.4.1
44
test:
55
override:
66
- npm run build

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// THIS CHECK SHOULD BE THE FIRST THING IN THIS FILE
44
// This is to ensure that we catch env issues before we error while requiring other dependencies.
55
require('./tools/check-environment')(
6-
{requiredNpmVersion: '>=3.5.2 <4.0.0', requiredNodeVersion: '>=4.2.1 <5.0.0'});
6+
{requiredNpmVersion: '>=3.5.3 <4.0.0', requiredNodeVersion: '>=5.4.1 <6.0.0'});
77

88

99
var fse = require('fs-extra');

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"license": "MIT",
2121
"engines": {
22-
"node": ">= 4.2.1 < 5"
22+
"node": ">= 5.4.1 < 6"
2323
},
2424
"repository": {
2525
"type": "git",

0 commit comments

Comments
 (0)
X Tutup