mirror of
https://github.com/facebook/react.git
synced 2026-02-25 22:25:09 +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.
12 lines
196 B
JavaScript
12 lines
196 B
JavaScript
var path = require('path');
|
|
|
|
module.exports = {
|
|
entry: './input',
|
|
output: {
|
|
filename: 'output.js',
|
|
},
|
|
resolve: {
|
|
root: path.resolve('../../../../build/oss-experimental/'),
|
|
},
|
|
};
|