Skip to content

Commit d30e3a6

Browse files
authoredJan 5, 2018
Merge pull request #3150 from anthony-redFox/3.x
Drop node 0.10 and 0.12 and added node 9 matrix testing
2 parents 385da8f + 0b7c81c commit d30e3a6

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed
 

‎.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ cache:
33
directories:
44
- travis-phantomjs
55
node_js:
6+
- "9"
67
- "8"
78
- "6"
89
- "4"
9-
# - "0.12"
10-
# - "0.10"
1110
before_install:
1211
# from https://github.com/travis-ci/travis-ci/issues/3225#issuecomment-177592725
1312
# and also from https://github.com/travis-ci/travis-ci/issues/3225#issuecomment-200965782

‎appveyor.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
11
# Test against these versions of Node.js.
22
environment:
33
matrix:
4-
# - nodejs_version: "0.10"
5-
# - nodejs_version: "0.12"
64
- nodejs_version: "4"
75
- nodejs_version: "6"
86
- nodejs_version: "8"
7+
- nodejs_version: "9"
98

109
# Install scripts. (runs after repo cloning)
1110
install:
12-
# Get the latest stable version of Node 0.STABLE.latest
13-
- ps: Install-Product node $env:nodejs_version
14-
# Use npm v2
15-
- npm -g install npm@2
16-
- set PATH=%APPDATA%\npm;%PATH%
17-
- npm -v
18-
1911
# node 0.10 & 0.12 have race condition issues when running custom install scripts
2012
# this can cause phantomjs-prebuilt install script to fail with the error:
2113
# <Cannot find module 'boom'>

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"browser": "./dist/less.js",
3636
"engines": {
37-
"node": ">=0.12"
37+
"node": ">=4"
3838
},
3939
"scripts": {
4040
"test": "grunt test"

0 commit comments

Comments
 (0)
Please sign in to comment.