Remove $ from terminal commands in README (#130)

* Remove $ from terminal commands in README

So they can be copied and pasted a block at a time

* Remove dependency on globally installed webpack
This commit is contained in:
Daniel Imms 2016-07-21 12:07:35 -07:00 committed by Guillermo Rauch
parent 51b72325f2
commit 12250cea19

View file

@ -24,7 +24,7 @@ To install `package.json` dependencies in a way where the native
modules are built with `electron`, run:
```bash
$ ./scripts/install.sh
./scripts/install.sh
```
Then, you want to make sure `app/dist` is populated. I recommend
@ -32,15 +32,15 @@ running `webpack` with `--watch` so that any changes you make
to the app are detected.
```bash
$ cd app/
$ npm install
$ npm run dev
cd app/
npm install
npm run dev
```
Then you can run in the main directory:
```bash
$ npm start
npm start
```
...to launch the app!