From 203980ab6688e266fdd0bfdc48cb5caff47c32d9 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Sun, 20 Mar 2016 12:11:31 -0700 Subject: [PATCH] [fix] fbjs version compatible with React Native React Native 0.21 currently uses fbjs@0.6.x, and React Native 0.22 will use fbjs@0.7.x. Fix #103 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5feaf60b..ff4de884 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "test:watch": "npm run test -- --no-single-run" }, "dependencies": { - "fbjs": "^0.7.2", + "fbjs": "0.6.x || 0.7.x", "inline-style-prefix-all": "^1.0.3", "lodash.debounce": "^4.0.3", "react-textarea-autosize": "^3.1.0",