Skip to content

Commit

Permalink
Mention Yarn in blog post
Browse files Browse the repository at this point in the history
Summary:
An original idea from GantMan facebook#11311
Closes facebook#11313

Differential Revision: D4281207

Pulled By: mkonicek

fbshipit-source-id: e878c0ace65c0f4614e0325f7f2f0b660559e754
  • Loading branch information
ncuillery authored and Facebook Github Bot committed Dec 6, 2016
1 parent d482743 commit 999b120
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion blog/2016-12-05-easier-upgrades.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,20 @@ Today I am proud to introduce a new tool that helps solve this problem. The tool

> **Requirement**: Git has to be available in the `PATH`. Your project doesn't have to be managed by Git.
Install `react-native-git-upgrade` globally and run it inside your project directory:
Install `react-native-git-upgrade` globally:

```shell
$ npm install -g react-native-git-upgrade
```
or, using [Yarn](https://yarnpkg.com/):

```shell
$ yarn add global react-native-git-upgrade
```

Then, run it inside your project directory:

```shell
$ cd MyProject
$ react-native-git-upgrade 0.38.0
```
Expand Down

0 comments on commit 999b120

Please sign in to comment.