Skip to content

Commit

Permalink
feat(project): use yarn for dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
David Zukowski committed Dec 2, 2016
1 parent c2da663 commit 1f24fb0
Show file tree
Hide file tree
Showing 3 changed files with 6,030 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ cache:
- node_modules

install:
- npm install
- npm install -g yarn
- yarn install

script:
- npm run deploy:dev
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Finally, This project wouldn't be possible without the help of our many contribu

## Requirements
* node `^4.5.0`
* npm `^3.0.0`
* yarn `^0.17.0` or npm `^3.0.0`

## Getting Started

Expand All @@ -59,11 +59,11 @@ $ git clone https://github.com/davezuko/react-redux-starter-kit.git <my-project-
$ cd <my-project-name>
```

Then install dependencies and check to see it works
Then install dependencies and check to see it works. It is recommended that you use [Yarn](https://yarnpkg.com/) for deterministic installs, but `npm install` will work just as well.

```bash
$ npm install # Install project dependencies
$ npm start # Compile and launch
$ yarn install # Install project dependencies
$ npm start # Compile and launch
```
If everything works, you should see the following:

Expand Down
Loading

0 comments on commit 1f24fb0

Please sign in to comment.