Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: change default npm client to yarn #4244

Merged
merged 1 commit into from
Jan 31, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ matrix:

install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm
- npm install
- npm install -g yarn
- yarn install

test_script:
- node --version
- npm --version
- npm test
- yarn --version
- yarn test
- node tests\run_e2e.js

build: off
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
dist/
node_modules/
npm-debug.log*
yarn.lock

# IDEs
.idea/
Expand Down
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,12 @@ before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CHROME_BIN=chromium-browser; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo "--no-sandbox" > ~/.config/chromium-flags.conf; fi
- npm install -g npm
- npm config set spin false
- npm config set progress false
- npm install -g yarn
- yarn config set spin false
- yarn config set progress false

install:
- npm install --no-optional
- yarn install --no-optional

script:
- if [[ "$SCRIPT" ]]; then npm run-script $SCRIPT; fi
Expand Down