From 9a0319d5250f12860a1a26bbd91d323c0616c42c Mon Sep 17 00:00:00 2001
From: Ray Schamp <ray@scratch.mit.edu>
Date: Mon, 26 Sep 2016 11:02:26 -0400
Subject: [PATCH] Don't be strict about the React dependencies

Because these are peer dependencies, we should be lenient about the required version of React required to use the components.

I didn't use the caret because the x's work and it's obvious what they mean, unlike ^ and ~.
---
 package.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package.json b/package.json
index c1aa6d627..866d0dec6 100644
--- a/package.json
+++ b/package.json
@@ -15,8 +15,8 @@
     "url": "git+ssh://git@github.com/LLK/scratch-gui.git"
   },
   "peerDependencies": {
-    "react": "15.3.1",
-    "react-dom": "15.3.1"
+    "react": "15.x.x",
+    "react-dom": "15.x.x"
   },
   "devDependencies": {
     "babel-core": "6.14.0",
-- 
GitLab