Skip to content

Commit fa4f73c

Browse files
committed
* Update package-lock.json * Remove flow-bin workaround * Re-enable locked-deps tests in AppVeyor
1 parent b888419 commit fa4f73c

File tree

4 files changed

+305
-56
lines changed

4 files changed

+305
-56
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cache:
1616
directories:
1717
- $HOME/.npm
1818
before_install:
19-
- npm install --global [email protected].0
19+
- npm install --global [email protected].2
2020
- npm --version
2121
install:
2222
- if [[ ${FRESH_DEPS} == "true" ]]; then npm install --no-shrinkwrap --prefer-online; else npm install --prefer-offline; fi

appveyor.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ skip_commits:
88
- '**/*.md'
99
configuration:
1010
- FreshDeps
11-
# - LockedDeps
11+
- LockedDeps
1212
environment:
1313
matrix:
1414
- nodejs_version: 8
@@ -23,11 +23,11 @@ matrix:
2323
nodejs_version: 4
2424
install:
2525
- ps: Install-Product node $env:nodejs_version
26-
- npm install --global [email protected].0
26+
- npm install --global [email protected].2
2727
- npm --version
2828
- git config core.symlinks true
2929
- git reset --hard
30-
- if %configuration% == FreshDeps (npm install --no-optional --no-shrinkwrap --prefer-online)
31-
- if %configuration% == LockedDeps (npm install --no-optional --prefer-offline)
30+
- if %configuration% == FreshDeps (npm install --no-shrinkwrap --prefer-online)
31+
- if %configuration% == LockedDeps (npm install --prefer-offline)
3232
test_script:
3333
- npm run test-win

0 commit comments

Comments
 (0)