From 20af33909736d98f77d48bdb5f12ddd661b324a1 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Fri, 11 Nov 2016 00:15:26 +0100 Subject: [PATCH] Yarn instructions --- .gitignore | 1 + README.md | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index 78e6a1c..d291e31 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ Gemfile.lock _dist .awspublish* .sass-cache +yarn.lock diff --git a/README.md b/README.md index f544f3c..72f9f62 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ You need to have the following tools installed on your development machine before moving on: - [node.js](http://nodejs.org/) & [npm](https://npmjs.org/) +- (optional) use [Yarn](https://yarnpkg.com) instead of npm for faster dependency installations - [Ruby](https://www.ruby-lang.org) (for sanity, install with [rvm](https://rvm.io/)) - [Bundler](http://bundler.io/) @@ -22,6 +23,12 @@ Run the following command from the repository's root folder to install all depen npm i && bundle install ``` +or + +```bash +yarn && bundle install +``` + ### Development build Spin up local dev server and livereloading watch task, reachable under [https://localhost:1337](https://localhost:1337):