2017-05-02 17:04:16 -07:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2017-05-20 08:31:47 -07:00
|
|
|
const webpack = require('webpack');
|
2018-07-13 18:56:41 -07:00
|
|
|
const { basename, dirname, join, relative, resolve } = require('path');
|
2017-05-20 08:31:47 -07:00
|
|
|
const { sync } = require('glob');
|
2018-07-13 18:56:41 -07:00
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
2018-12-31 09:11:48 -08:00
|
|
|
const AssetsManifestPlugin = require('webpack-assets-manifest');
|
2017-05-20 08:31:47 -07:00
|
|
|
const extname = require('path-complete-extname');
|
2019-03-15 07:05:31 -07:00
|
|
|
const { env, settings, themes, output } = require('./configuration');
|
|
|
|
const rules = require('./rules');
|
2017-05-22 06:06:06 -07:00
|
|
|
const localePackPaths = require('./generateLocalePacks');
|
2017-05-02 17:04:16 -07:00
|
|
|
|
2017-06-17 17:57:09 -07: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 11:56:32 -07:00
|
|
|
|
2017-05-02 17:04:16 -07:00
|
|
|
module.exports = {
|
2017-09-19 07:36:23 -07:00
|
|
|
entry: Object.assign(
|
2017-11-05 04:07:59 -08: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 17:04:16 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
output: {
|
2019-03-15 07:05:31 -07:00
|
|
|
filename: 'js/[name]-[chunkhash].js',
|
|
|
|
chunkFilename: 'js/[name]-[chunkhash].chunk.js',
|
|
|
|
hotUpdateChunkFilename: 'js/[id]-[hash].hot-update.js',
|
2017-06-17 17:57:09 -07:00
|
|
|
path: output.path,
|
|
|
|
publicPath: output.publicPath,
|
2017-05-02 17:04:16 -07:00
|
|
|
},
|
|
|
|
|
2018-07-13 18:56:41 -07:00
|
|
|
optimization: {
|
|
|
|
runtimeChunk: {
|
|
|
|
name: 'common',
|
|
|
|
},
|
|
|
|
splitChunks: {
|
|
|
|
cacheGroups: {
|
|
|
|
default: false,
|
|
|
|
vendors: false,
|
|
|
|
common: {
|
|
|
|
name: 'common',
|
|
|
|
chunks: 'all',
|
|
|
|
minChunks: 2,
|
|
|
|
minSize: 0,
|
|
|
|
test: /^(?!.*[\\\/]node_modules[\\\/]react-intl[\\\/]).+$/,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
occurrenceOrder: true,
|
|
|
|
},
|
|
|
|
|
2017-05-02 17:04:16 -07:00
|
|
|
module: {
|
2019-03-15 07:05:31 -07:00
|
|
|
rules: Object.keys(rules).map(key => rules[key]),
|
2017-05-02 17:04:16 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))),
|
2017-10-07 17:55:58 -07: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');
|
|
|
|
}
|
|
|
|
),
|
2018-07-13 18:56:41 -07:00
|
|
|
new MiniCssExtractPlugin({
|
2019-03-15 07:05:31 -07:00
|
|
|
filename: 'css/[name]-[contenthash:8].css',
|
|
|
|
chunkFilename: 'css/[name]-[contenthash:8].chunk.css',
|
2018-07-13 18:56:41 -07:00
|
|
|
}),
|
2018-12-31 09:11:48 -08:00
|
|
|
new AssetsManifestPlugin({
|
2019-03-15 07:05:31 -07:00
|
|
|
integrity: false,
|
|
|
|
entrypoints: true,
|
2018-12-31 09:11:48 -08:00
|
|
|
writeToDisk: true,
|
2019-03-15 07:05:31 -07:00
|
|
|
publicPath: true,
|
2017-05-20 08:31:47 -07:00
|
|
|
}),
|
2017-05-02 17:04:16 -07:00
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
2017-06-17 17:57:09 -07:00
|
|
|
extensions: settings.extensions,
|
2017-05-02 17:04:16 -07:00
|
|
|
modules: [
|
2017-06-17 17:57:09 -07:00
|
|
|
resolve(settings.source_path),
|
|
|
|
'node_modules',
|
2017-05-20 08:31:47 -07:00
|
|
|
],
|
2017-05-02 17:04:16 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
resolveLoader: {
|
2017-06-17 17:57:09 -07:00
|
|
|
modules: ['node_modules'],
|
2017-05-06 02:02:19 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
node: {
|
|
|
|
// Called by http-link-header in an API we never use, increases
|
|
|
|
// bundle size unnecessarily
|
2017-05-20 08:31:47 -07:00
|
|
|
Buffer: false,
|
|
|
|
},
|
|
|
|
};
|