File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -10,18 +10,14 @@ node_js:
1010 - " 5.12"
1111 - " 6.10"
1212 - " 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.1"
2014sudo : false
2115cache :
2216 directories :
2317 - node_modules
2418before_install :
19+ # Skip updating shrinkwrap / lock
20+ - " npm config set shrinkwrap false"
2521 # Setup Node.js version-specific dependencies
2622 - " test $TRAVIS_NODE_VERSION != '0.8' || npm rm --save-dev istanbul"
2723 - " 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:
1010 - nodejs_version : " 5.12"
1111 - nodejs_version : " 6.10"
1212 - nodejs_version : " 7.10"
13+ - nodejs_version : " 8.1"
1314cache :
1415 - node_modules
1516install :
1617 - ps : Install-Product node $env:nodejs_version
18+ - npm config set shrinkwrap false
1719 - if "%nodejs_version%" equ "0.8" npm rm --save-dev istanbul
1820 - for /f tokens^=2^ delims^=^" %%m in ('findstr /r /c:"eslint[^ ]" package.json') do call npm rm --save-dev %%m
1921 - if exist node_modules npm prune
You can’t perform that action at this time.
0 commit comments