mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
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:
parent
51b72325f2
commit
12250cea19
1 changed files with 5 additions and 5 deletions
10
README.md
10
README.md
|
|
@ -24,7 +24,7 @@ To install `package.json` dependencies in a way where the native
|
||||||
modules are built with `electron`, run:
|
modules are built with `electron`, run:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ ./scripts/install.sh
|
./scripts/install.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
Then, you want to make sure `app/dist` is populated. I recommend
|
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.
|
to the app are detected.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ cd app/
|
cd app/
|
||||||
$ npm install
|
npm install
|
||||||
$ npm run dev
|
npm run dev
|
||||||
```
|
```
|
||||||
|
|
||||||
Then you can run in the main directory:
|
Then you can run in the main directory:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ npm start
|
npm start
|
||||||
```
|
```
|
||||||
|
|
||||||
...to launch the app!
|
...to launch the app!
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue