From a8184917a26215629d6194c079c953dff4caacf5 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Fri, 5 Apr 2019 22:18:50 +0200 Subject: [PATCH] docs(contributing): replace npm install with yarn Related to #9831 --- .github/CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 88f23b3b..50fa9ba7 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -35,12 +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 6+** and [Java Runtime Environment](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (for running Selenium server during e2e tests). +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). After cloning the repo, run: ``` bash -$ npm install # or yarn +$ yarn # it install the dependencies of the project ``` ### Committing Changes