use yarn for external bootstrap

This commit is contained in:
Henry Zhu 2017-10-07 09:17:15 -04:00
parent e522dd8a3c
commit b4ba3cf2fa
2 changed files with 3 additions and 4 deletions

View File

@ -20,9 +20,6 @@ before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash - curl -o- -L https://yarnpkg.com/install.sh | bash
script: script:
# Babel doesn't build correctly with npm v2 (which comes bundled with Node v4)
# so we manually upgrade to a known working npm version.
- npm install --global npm@4
- 'if [ "$JOB" = "test" ]; then make test-ci; fi' - 'if [ "$JOB" = "test" ]; then make test-ci; fi'
- 'if [ "$JOB" = "lint" ]; then make lint && make flow; fi' - 'if [ "$JOB" = "lint" ]; then make lint && make flow; fi'

View File

@ -28,5 +28,7 @@
"packages/*", "packages/*",
"codemods/*", "codemods/*",
"experimental/*" "experimental/*"
] ],
"npmClient": "yarn",
"npmClientArgs": ["--no-lockfile"]
} }