From 9817055f87afb62065501fbd1224ea0f85c72f23 Mon Sep 17 00:00:00 2001 From: Eli Perkins Date: Mon, 10 Apr 2017 11:11:02 -0400 Subject: [PATCH] Update example project to a version of React Native that matches the packages needs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit React Native 0.42.0 wants a version of React that matches ~15.4.1, rather than ^15.5.0, so we’ll pin to that match for now. --- examples/Basic/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Basic/package.json b/examples/Basic/package.json index a67446b..f8627f0 100644 --- a/examples/Basic/package.json +++ b/examples/Basic/package.json @@ -6,8 +6,8 @@ "start": "node_modules/react-native/packager/packager.sh" }, "dependencies": { - "react": "^15.3.2", - "react-native": "^0.36.0", + "react": "~15.4.1", + "react-native": "^0.42.0", "react-native-blur": "file:../../" } }