Skip to content

Commit

Permalink
Update dependencies (#2833)
Browse files Browse the repository at this point in the history
* Update dependencies

* Transpile all dependencies

* Only run tests against the bootstrap build on CI

* Always do a test build before the bootstrap build

* Remove --ignore-scripts for now

* Add --ignore-scripts again

* Also use the ci:test script on appveyor

* Revert previous change
  • Loading branch information
lukastaegert committed May 3, 2019
1 parent c4d8440 commit 5a5ccc8
Show file tree
Hide file tree
Showing 6 changed files with 725 additions and 401 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: Install Dependencies
command: npm ci
command: npm ci --ignore-scripts
- run:
name: Run linting.
command: npm run lint
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Expand Up @@ -16,13 +16,13 @@ environment:
install:
- ps: Install-Product node $env:nodejs_version
- IF %nodejs_version% LSS 8 npm -g install npm@5
- npm install --ignore-scripts
- npm ci --ignore-scripts

build: off

test_script:
- node --version && npm --version
- npm test
- npm run ci:test

matrix:
fast_finish: false
Expand Down

0 comments on commit 5a5ccc8

Please sign in to comment.