Skip to content

Commit

Permalink
Build renderers into their individual npm packages (#7168)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sebmarkbage authored Aug 11, 2016
1 parent a06d3a1 commit 1a4b68f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

'use strict';

module.exports = require('react/lib/ReactTestRenderer');
module.exports = require('./lib/ReactTestRenderer');

0 comments on commit 1a4b68f

Please sign in to comment.