From 1a4b68f9c6e62866875a6c3b5a7f21960e2c0913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Markb=C3=A5ge?= Date: Wed, 10 Aug 2016 18:17:49 -0700 Subject: [PATCH] Build renderers into their individual npm packages (#7168) This copies modules into three separate packages instead of putting it all in React. The overlap in shared and between renderers gets duplicated. This allows the isomorphic package to stay minimal. It can also be used as a direct dependency without much risk. This also allow us to ship versions to each renderer independently and we can ship renderers without updating the main react package dependency. --- index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.js b/index.js index 936c374..3436e5b 100644 --- a/index.js +++ b/index.js @@ -1,4 +1,3 @@ - 'use strict'; -module.exports = require('react/lib/ReactTestRenderer'); +module.exports = require('./lib/ReactTestRenderer');