File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
1
coverage /
2
2
node_modules /
3
3
npm-debug.log
4
+ package-lock.json
Original file line number Diff line number Diff line change @@ -10,18 +10,14 @@ node_js:
10
10
- " 5.12"
11
11
- " 6.11"
12
12
- " 7.10"
13
- matrix :
14
- include :
15
- - node_js : " 8.0"
16
- env : " NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/nightly"
17
- allow_failures :
18
- # Allow the nightly installs to fail
19
- - env : " NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/nightly"
13
+ - " 8.3"
20
14
sudo : false
21
15
cache :
22
16
directories :
23
17
- node_modules
24
18
before_install :
19
+ # Skip updating shrinkwrap / lock
20
+ - " npm config set shrinkwrap false"
25
21
# Setup Node.js version-specific dependencies
26
22
- " test $TRAVIS_NODE_VERSION != '0.8' || npm rm --save-dev istanbul"
27
23
- " test $(echo $TRAVIS_NODE_VERSION | cut -d. -f1) -ge 4 || npm rm --save-dev $(grep -E '\" eslint\\ S*\" ' package.json | cut -d'\" ' -f2)"
Original file line number Diff line number Diff line change @@ -10,10 +10,12 @@ environment:
10
10
- nodejs_version : " 5.12"
11
11
- nodejs_version : " 6.11"
12
12
- nodejs_version : " 7.10"
13
+ - nodejs_version : " 8.3"
13
14
cache :
14
15
- node_modules
15
16
install :
16
17
- ps : Install-Product node $env:nodejs_version
18
+ - npm config set shrinkwrap false
17
19
- if "%nodejs_version%" equ "0.8" npm rm --save-dev istanbul
18
20
- for /f tokens^=2^ delims^=^" %%m in ('findstr /r /c:"eslint[^ ]" package.json') do call npm rm --save-dev %%m
19
21
- if exist node_modules npm prune
You can’t perform that action at this time.
0 commit comments