Created
March 16, 2016 14:01
-
-
Save notpushkin/fa68da6925b44f567d63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rollup({ | |
| plugins: [ | |
| nodeResolve(), | |
| commonjs({ | |
| namedExports: { | |
| "node_modules/react/react.js": [ | |
| // deprecated APIs: | |
| "findDOMNode", | |
| "render", | |
| "unmountComponentAtNode", | |
| "renderToString", | |
| "renderToStaticMarkup", | |
| // from ReactIsomorphic: | |
| "Children", | |
| "Component", | |
| "createElement", | |
| "cloneElement", | |
| "isValidElement", | |
| "PropTypes", | |
| "createClass", | |
| "createFactory", | |
| "createMixin", | |
| "DOM", | |
| "version", | |
| "__spread", | |
| ], | |
| "node_modules/react-dom/index.js": [ | |
| "findDOMNode", | |
| "render", | |
| "unmountComponentAtNode", | |
| "version", | |
| "unstable_batchedUpdates", | |
| "unstable_renderSubtreeIntoContainer", | |
| ], | |
| } | |
| }) | |
| ] | |
| })) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment