We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdfbe14 commit e142ca0Copy full SHA for e142ca0
.gitignore
@@ -1,2 +1,3 @@
1
coverage
2
node_modules
3
+package-lock.json
.travis.yml
@@ -10,11 +10,14 @@ node_js:
10
- "5.12"
11
- "6.11"
12
- "7.10"
13
+ - "8.9"
14
sudo: false
15
cache:
16
directories:
17
- node_modules
18
before_install:
19
+ # Skip updating shrinkwrap / lock
20
+ - "npm config set shrinkwrap false"
21
# Setup Node.js version-specific dependencies
22
- "test $TRAVIS_NODE_VERSION != '0.8' || npm rm --save-dev istanbul"
23
- "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