Skip to content

Yarn: install specific stable version in build script. #5635

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

Merged
merged 2 commits into from
Nov 14, 2016
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ $ yarn distclean

3. Install [yarn](https://www.npmjs.com/package/yarn) package.
```
npm install -g yarn
npm install -g yarn@0.16.1
```

4. Make sure the Jetpack plugin is active and run
Expand Down
2 changes: 1 addition & 1 deletion tests/run-travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ else

gem install sass
gem install compass
npm install -g yarn
npm install -g yarn@0.16.1
yarn add gulp-cli
yarn

Expand Down
3 changes: 2 additions & 1 deletion tools/deploy-to-master-stable-branch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ fi
echo ""

echo "Building Jetpack"
npm install -g yarn
npm install -g yarn@0.16.1
yarn run distclean
yarn cache clean
yarn
NODE_ENV=production yarn run build-client
echo "Done"
Expand Down