mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
It's confusing to new contributors, and me, that you're supposed to use `yarn build-combined` for almost everything but not fixtures. We should use only one build command for everything. Updated fixtures to use the folder convention of build-combined.
14 lines
378 B
JavaScript
14 lines
378 B
JavaScript
module.exports = {
|
|
baseUrl: '.',
|
|
name: 'input',
|
|
out: 'output.js',
|
|
optimize: 'none',
|
|
paths: {
|
|
react: '../../../../build/oss-experimental/react/umd/react.development',
|
|
'react-dom':
|
|
'../../../../build/oss-experimental/react-dom/umd/react-dom.development',
|
|
schedule:
|
|
'../../../../build/oss-experimental/scheduler/umd/schedule.development',
|
|
},
|
|
};
|