From e35bdb680e3deac4282ca2963390fe2c911c5bed Mon Sep 17 00:00:00 2001 From: jacobawenger Date: Fri, 11 Jul 2014 12:05:25 -0700 Subject: [PATCH] Added instruction for installing Bower --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a81fd60..7ae92a5 100644 --- a/README.md +++ b/README.md @@ -86,11 +86,12 @@ If you'd like to contribute to ReactFire, you'll need to run the following comma ```bash $ git clone https://github.com/firebase/reactfire.git -$ cd reactfire # go to the reactfire directory -$ npm install -g gulp # globally install gulp task runner -$ npm install # install local npm build / test dependencies -$ bower install # install local JavaScript dependencies -$ gulp watch # watch for source file changes +$ cd reactfire # go to the reactfire directory +$ npm install -g gulp # globally install gulp task runner +$ npm install -g bower # globally install Bower package manager +$ npm install # install local npm build / test dependencies +$ bower install # install local JavaScript dependencies +$ gulp watch # watch for source file changes ``` `gulp watch` will watch for changes in the `/src/` directory and lint, concatenate, and minify the source files when a change occurs. The output files - `reactfire.js` and `reactfire.min.js` - are written to the `/dist/` directory.