From bc01636fffcae74dba4de913c762282115c1c65d Mon Sep 17 00:00:00 2001 From: billyzou Date: Mon, 8 Apr 2019 13:49:08 -0400 Subject: [PATCH 1/2] docs(contributing): add instruction to install yarn --- .github/CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 50fa9ba782f..49b15cfd75c 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -37,6 +37,12 @@ Hi! I'm really excited that you are interested in contributing to Vue.js. Before You will need [Node.js](http://nodejs.org) **version 8+** and [Java Runtime Environment](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (for running Selenium server during e2e tests). +If you only have npm installed on your computer but there is no yarn, run: + +```bash +$ npm install -g yarn # It installs yarn +``` + After cloning the repo, run: ``` bash From b2300c66a8e06cd9a794c83ba527b39d85300955 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 8 Apr 2019 20:04:42 +0200 Subject: [PATCH 2/2] Update CONTRIBUTING.md --- .github/CONTRIBUTING.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 49b15cfd75c..46c49bfbe81 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -35,18 +35,12 @@ Hi! I'm really excited that you are interested in contributing to Vue.js. Before ## Development Setup -You will need [Node.js](http://nodejs.org) **version 8+** and [Java Runtime Environment](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (for running Selenium server during e2e tests). - -If you only have npm installed on your computer but there is no yarn, run: - -```bash -$ npm install -g yarn # It installs yarn -``` +You will need [Node.js](http://nodejs.org) **version 8+**, [Java Runtime Environment](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (for running Selenium server during e2e tests) and [yarn](https://yarnpkg.com/en/docs/install). After cloning the repo, run: ``` bash -$ yarn # it install the dependencies of the project +$ yarn # install the dependencies of the project ``` ### Committing Changes