From 12250cea198c2dd25fcc8c342df3a642fe44709e Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 21 Jul 2016 12:07:35 -0700 Subject: [PATCH] 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 --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a03c32f5b02c..571b2e2b210e 100644 --- a/README.md +++ b/README.md @@ -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!