2017-05-02 20:04:16 -04:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2017-05-20 11:31:47 -04:00
|
|
|
const webpack = require('webpack');
|
2017-05-30 09:30:59 -04:00
|
|
|
const { basename, dirname, join, relative, resolve, sep } = require('path');
|
2017-05-20 11:31:47 -04:00
|
|
|
const { sync } = require('glob');
|
|
|
|
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|
|
|
const ManifestPlugin = require('webpack-manifest-plugin');
|
|
|
|
const extname = require('path-complete-extname');
|
2017-09-19 10:36:23 -04:00
|
|
|
const { env, settings, themes, output, loadersDir } = require('./configuration.js');
|
2017-05-22 09:06:06 -04:00
|
|
|
const localePackPaths = require('./generateLocalePacks');
|
2017-05-02 20:04:16 -04:00
|
|
|
|
2017-06-17 20:57:09 -04:00
|
|
|
const extensionGlob = `**/*{${settings.extensions.join(',')}}*`;
|
|
|
|
const entryPath = join(settings.source_path, settings.source_entry_path);
|
|
|
|
const packPaths = sync(join(entryPath, extensionGlob));
|
2017-06-01 14:56:32 -04:00
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
module.exports = {
|
2017-09-19 10:36:23 -04:00
|
|
|
entry: Object.assign(
|
2017-11-05 07:07:59 -05:00
|
|
|
packPaths.reduce((map, entry) => {
|
|
|
|
const localMap = map;
|
|
|
|
const namespace = relative(join(entryPath), dirname(entry));
|
|
|
|
localMap[join(namespace, basename(entry, extname(entry)))] = resolve(entry);
|
|
|
|
return localMap;
|
|
|
|
}, {}),
|
|
|
|
localePackPaths.reduce((map, entry) => {
|
|
|
|
const localMap = map;
|
|
|
|
localMap[basename(entry, extname(entry, extname(entry)))] = resolve(entry);
|
|
|
|
return localMap;
|
|
|
|
}, {}),
|
|
|
|
Object.keys(themes).reduce((themePaths, name) => {
|
|
|
|
themePaths[name] = resolve(join(settings.source_path, themes[name]));
|
|
|
|
return themePaths;
|
|
|
|
}, {})
|
2017-05-02 20:04:16 -04:00
|
|
|
),
|
|
|
|
|
|
|
|
output: {
|
|
|
|
filename: '[name].js',
|
2017-07-27 23:14:01 -04:00
|
|
|
chunkFilename: '[name].js',
|
2017-06-17 20:57:09 -04:00
|
|
|
path: output.path,
|
|
|
|
publicPath: output.publicPath,
|
2017-05-02 20:04:16 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
module: {
|
2017-05-20 11:31:47 -04:00
|
|
|
rules: sync(join(loadersDir, '*.js')).map(loader => require(loader)),
|
2017-05-02 20:04:16 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))),
|
2017-10-07 20:55:58 -04:00
|
|
|
new webpack.NormalModuleReplacementPlugin(
|
|
|
|
/^history\//, (resource) => {
|
|
|
|
// temporary fix for https://github.com/ReactTraining/react-router/issues/5576
|
|
|
|
// to reduce bundle size
|
|
|
|
resource.request = resource.request.replace(/^history/, 'history/es');
|
|
|
|
}
|
|
|
|
),
|
2017-10-27 10:54:20 -04:00
|
|
|
new ExtractTextPlugin(env.NODE_ENV === 'production' ? '[name]-[contenthash].css' : '[name].css'),
|
2017-06-17 20:57:09 -04:00
|
|
|
new ManifestPlugin({
|
|
|
|
publicPath: output.publicPath,
|
|
|
|
writeToFileEmit: true,
|
|
|
|
}),
|
2017-05-02 20:04:16 -04:00
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
2017-05-15 14:20:10 -04:00
|
|
|
name: 'common',
|
2017-05-22 09:06:06 -04:00
|
|
|
minChunks: (module, count) => {
|
2017-05-30 09:30:59 -04:00
|
|
|
const reactIntlPathRegexp = new RegExp(`node_modules\\${sep}react-intl`);
|
2017-06-01 14:56:32 -04:00
|
|
|
|
2017-05-30 09:30:59 -04:00
|
|
|
if (module.resource && reactIntlPathRegexp.test(module.resource)) {
|
2017-05-22 09:06:06 -04:00
|
|
|
// skip react-intl because it's useless to put in the common chunk,
|
|
|
|
// e.g. because "shared" modules between zh-TW and zh-CN will never
|
|
|
|
// be loaded together
|
|
|
|
return false;
|
|
|
|
}
|
2017-05-27 10:55:09 -04:00
|
|
|
|
2017-05-22 09:06:06 -04:00
|
|
|
return count >= 2;
|
|
|
|
},
|
2017-05-20 11:31:47 -04:00
|
|
|
}),
|
2017-05-02 20:04:16 -04:00
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
2017-06-17 20:57:09 -04:00
|
|
|
extensions: settings.extensions,
|
2017-05-02 20:04:16 -04:00
|
|
|
modules: [
|
2017-06-17 20:57:09 -04:00
|
|
|
resolve(settings.source_path),
|
|
|
|
'node_modules',
|
2017-05-20 11:31:47 -04:00
|
|
|
],
|
2017-05-02 20:04:16 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
resolveLoader: {
|
2017-06-17 20:57:09 -04:00
|
|
|
modules: ['node_modules'],
|
2017-05-06 05:02:19 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
node: {
|
|
|
|
// Called by http-link-header in an API we never use, increases
|
|
|
|
// bundle size unnecessarily
|
2017-05-20 11:31:47 -04:00
|
|
|
Buffer: false,
|
|
|
|
},
|
|
|
|
};
|