Update README

No longer need to do init the submodules when first using the app.
This commit is contained in:
Chris Hill-Scott
2016-01-14 16:26:56 +00:00
parent acd7e79c1a
commit 2c79787b4d

View File

@@ -28,17 +28,17 @@ Node's package management tool.
brew install node brew install node
``` ```
n is a tool for managing different versions of node. The following installs n and uses the latest version of node. n is a tool for managing different versions of node. The following installs n
and uses the latest version of node.
```shell
npm install -g n npm install -g n
n latest n latest
npm rebuild node-sass npm rebuild node-sass
```
Most of the frontend dependencies are managed using Git Submodules. Some are The frontend dependencies are managed using NPM and Bower. To install or update
managed with NPM and Bower. To install or update *all the things*, run *all the things*, run
```shell ```shell
git submodule init
git submodule update
npm install npm install
npm run build npm run build
``` ```