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