Skip to content

Commit

Permalink
Update to npm@5.4.2
Browse files Browse the repository at this point in the history
* Update package-lock.json
* Remove flow-bin workaround
* Re-enable locked-deps tests in AppVeyor
  • Loading branch information
novemberborn committed Sep 24, 2017
1 parent b888419 commit fa4f73c
Show file tree
Hide file tree
Showing 4 changed files with 305 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -16,7 +16,7 @@ cache:
directories:
- $HOME/.npm
before_install:
- npm install --global npm@5.4.0
- npm install --global npm@5.4.2
- npm --version
install:
- if [[ ${FRESH_DEPS} == "true" ]]; then npm install --no-shrinkwrap --prefer-online; else npm install --prefer-offline; fi
Expand Down
8 changes: 4 additions & 4 deletions appveyor.yml
Expand Up @@ -8,7 +8,7 @@ skip_commits:
- '**/*.md'
configuration:
- FreshDeps
# - LockedDeps
- LockedDeps
environment:
matrix:
- nodejs_version: 8
Expand All @@ -23,11 +23,11 @@ matrix:
nodejs_version: 4
install:
- ps: Install-Product node $env:nodejs_version
- npm install --global npm@5.4.0
- npm install --global npm@5.4.2
- npm --version
- git config core.symlinks true
- git reset --hard
- if %configuration% == FreshDeps (npm install --no-optional --no-shrinkwrap --prefer-online)
- if %configuration% == LockedDeps (npm install --no-optional --prefer-offline)
- if %configuration% == FreshDeps (npm install --no-shrinkwrap --prefer-online)
- if %configuration% == LockedDeps (npm install --prefer-offline)
test_script:
- npm run test-win

0 comments on commit fa4f73c

Please sign in to comment.