Skip to content

Commit

Permalink
Use Yarn instead of npm install (#1072)
Browse files Browse the repository at this point in the history
* Use Yarn instead of npm install

There's a problem with npm install and the option to package afterward. With yarn, you don't have this. I know it may be another required technology, but we need to change the doc if we don't fix the problem soon.

(see issue #1065)

* Update README.md
  • Loading branch information
jfcartier authored and amilajack committed Jun 18, 2017
1 parent 69517e8 commit 46ab148
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@ First, clone the repo via git:
git clone --depth=1 https://github.com/chentsulin/electron-react-boilerplate.git your-project-name
```

And then install dependencies.
**ProTip**: Install with [yarn](https://github.com/yarnpkg/yarn) for faster and safer installation:
And then install dependencies with yarn.

```bash
$ cd your-project-name && npm install
$ cd your-project-name
$ yarn
```
**Note**: If you can't use [yarn](https://github.com/yarnpkg/yarn) for some reason, try `npm install`.

## Run

Expand Down

0 comments on commit 46ab148

Please sign in to comment.