Skip to content

Commit e142ca0

Browse files
committed
build: support Node.js 8.x
1 parent fdfbe14 commit e142ca0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
coverage
22
node_modules
3+
package-lock.json

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ node_js:
1010
- "5.12"
1111
- "6.11"
1212
- "7.10"
13+
- "8.9"
1314
sudo: false
1415
cache:
1516
directories:
1617
- node_modules
1718
before_install:
19+
# Skip updating shrinkwrap / lock
20+
- "npm config set shrinkwrap false"
1821
# Setup Node.js version-specific dependencies
1922
- "test $TRAVIS_NODE_VERSION != '0.8' || npm rm --save-dev istanbul"
2023
- "test $(echo $TRAVIS_NODE_VERSION | cut -d. -f1) -ge 4 || npm rm --save-dev $(grep -E '\"eslint\\S*\"' package.json | cut -d'\"' -f2)"

0 commit comments

Comments
 (0)