From 9ec701f9fb0fb4214fb44c65ed8b01934f6060c5 Mon Sep 17 00:00:00 2001 From: Tomasz Cichocinski Date: Fri, 9 Dec 2016 22:59:34 +0100 Subject: [PATCH 1/2] Update `rnpm` to `react-native link` Updating documentation according to #118 --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f7b7e04..971a0e3 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,10 @@ Check the [roadmap here](https://github.com/Kureev/react-native-blur/issues/1) npm install react-native-blur ``` -2. Link your library by one of those ways: either by using `rnpm link` (see more about rnpm [here](https://github.com/rnpm/rnpm)) or like it's [described here](http://facebook.github.io/react-native/docs/linking-libraries-ios.html). +2. Link your native dependencies: + ``` + react-native link + ``` 3. Inside your code include JS part by adding ```javascript From 47d0c160c6b09eed299f1852d2c64b007c40cb4f Mon Sep 17 00:00:00 2001 From: Tomasz Cichocinski Date: Sat, 10 Dec 2016 15:54:04 +0100 Subject: [PATCH 2/2] Add plugin name at the end of `react-native link` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 971a0e3..0c121df 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Check the [roadmap here](https://github.com/Kureev/react-native-blur/issues/1) 2. Link your native dependencies: ``` - react-native link + react-native link react-native-blur ``` 3. Inside your code include JS part by adding