2017-05-03 01:04:16 +01:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2017-05-20 16:31:47 +01:00
|
|
|
const webpack = require('webpack');
|
2017-05-30 14:30:59 +01:00
|
|
|
const { basename, dirname, join, relative, resolve, sep } = require('path');
|
2017-05-20 16:31:47 +01: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 15:36:23 +01:00
|
|
|
const { env, settings, themes, output, loadersDir } = require('./configuration.js');
|
2017-05-22 14:06:06 +01:00
|
|
|
const localePackPaths = require('./generateLocalePacks');
|
2017-05-03 01:04:16 +01:00
|
|
|
|
2017-06-18 01:57:09 +01:00
|
|
|
const extensionGlob = `**/*{${settings.extensions.join(',')}}*`;
|
|
|
|
const entryPath = join(settings.source_path, settings.source_entry_path);
|
|
|
|
const packPaths = sync(join(entryPath, extensionGlob));
|
|
|
|
const entryPacks = [...packPaths, ...localePackPaths].filter(path => path !== join(entryPath, 'custom.js'));
|
2017-05-03 01:04:16 +01:00
|
|
|
|
2017-09-19 15:36:23 +01:00
|
|
|
const themePaths = Object.keys(themes).reduce(
|
|
|
|
(themePaths, name) => {
|
|
|
|
themePaths[name] = resolve(join(settings.source_path, themes[name]));
|
|
|
|
return themePaths;
|
|
|
|
}, {});
|
2017-06-01 19:56:32 +01:00
|
|
|
|
2017-05-03 01:04:16 +01:00
|
|
|
module.exports = {
|
2017-09-19 15:36:23 +01:00
|
|
|
entry: Object.assign(
|
|
|
|
entryPacks.reduce(
|
|
|
|
(map, entry) => {
|
|
|
|
const localMap = map;
|
|
|
|
let namespace = relative(join(entryPath), dirname(entry));
|
|
|
|
if (namespace === join('..', '..', '..', 'tmp', 'packs')) {
|
|
|
|
namespace = ''; // generated by generateLocalePacks.js
|
|
|
|
}
|
|
|
|
localMap[join(namespace, basename(entry, extname(entry)))] = resolve(entry);
|
|
|
|
return localMap;
|
|
|
|
}, {}
|
|
|
|
), themePaths
|
2017-05-03 01:04:16 +01:00
|
|
|
),
|
|
|
|
|
|
|
|
output: {
|
|
|
|
filename: '[name].js',
|
2017-07-28 04:14:01 +01:00
|
|
|
chunkFilename: '[name].js',
|
2017-06-18 01:57:09 +01:00
|
|
|
path: output.path,
|
|
|
|
publicPath: output.publicPath,
|
2017-05-03 01:04:16 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
module: {
|
2017-05-20 16:31:47 +01:00
|
|
|
rules: sync(join(loadersDir, '*.js')).map(loader => require(loader)),
|
2017-05-03 01:04:16 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))),
|
2017-10-08 01:55:58 +01: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 15:54:20 +01:00
|
|
|
new ExtractTextPlugin(env.NODE_ENV === 'production' ? '[name]-[contenthash].css' : '[name].css'),
|
2017-06-18 01:57:09 +01:00
|
|
|
new ManifestPlugin({
|
|
|
|
publicPath: output.publicPath,
|
|
|
|
writeToFileEmit: true,
|
|
|
|
}),
|
2017-05-03 01:04:16 +01:00
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
2017-05-15 19:20:10 +01:00
|
|
|
name: 'common',
|
2017-05-22 14:06:06 +01:00
|
|
|
minChunks: (module, count) => {
|
2017-05-30 14:30:59 +01:00
|
|
|
const reactIntlPathRegexp = new RegExp(`node_modules\\${sep}react-intl`);
|
2017-06-01 19:56:32 +01:00
|
|
|
|
2017-05-30 14:30:59 +01:00
|
|
|
if (module.resource && reactIntlPathRegexp.test(module.resource)) {
|
2017-05-22 14:06:06 +01: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 15:55:09 +01:00
|
|
|
|
2017-05-22 14:06:06 +01:00
|
|
|
return count >= 2;
|
|
|
|
},
|
2017-05-20 16:31:47 +01:00
|
|
|
}),
|
2017-05-03 01:04:16 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
2017-06-18 01:57:09 +01:00
|
|
|
extensions: settings.extensions,
|
2017-05-03 01:04:16 +01:00
|
|
|
modules: [
|
2017-06-18 01:57:09 +01:00
|
|
|
resolve(settings.source_path),
|
|
|
|
'node_modules',
|
2017-05-20 16:31:47 +01:00
|
|
|
],
|
2017-05-03 01:04:16 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
resolveLoader: {
|
2017-06-18 01:57:09 +01:00
|
|
|
modules: ['node_modules'],
|
2017-05-06 10:02:19 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
node: {
|
|
|
|
// Called by http-link-header in an API we never use, increases
|
|
|
|
// bundle size unnecessarily
|
2017-05-20 16:31:47 +01:00
|
|
|
Buffer: false,
|
|
|
|
},
|
|
|
|
};
|