mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
3c16baf848
* Remove /dist/ UMD builds We publish UMDs to npm (and we're considering stopping even that). This means we'll stop publishing to http://react.zpao.com/builds/master/latest/ * Update fixture paths
14 lines
366 B
JavaScript
14 lines
366 B
JavaScript
module.exports = {
|
|
baseUrl: '.',
|
|
name: 'input',
|
|
out: 'output.js',
|
|
optimize: 'none',
|
|
paths: {
|
|
react: '../../../../build/node_modules/react/umd/react.development',
|
|
'react-dom':
|
|
'../../../../build/node_modules/react-dom/umd/react-dom.development',
|
|
schedule:
|
|
'../../../../build/node_modules/scheduler/umd/schedule.development',
|
|
},
|
|
};
|