2017-05-03 00:04:16 +00:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2024-04-28 10:08:08 +00:00
|
|
|
const { basename, dirname, join, relative, resolve } = require('path');
|
2023-05-23 15:15:17 +00:00
|
|
|
|
2023-08-22 11:24:16 +00:00
|
|
|
const CircularDependencyPlugin = require('circular-dependency-plugin');
|
2024-04-28 10:08:08 +00:00
|
|
|
const { sync } = require('glob');
|
2018-07-14 01:56:41 +00:00
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
2024-04-28 10:08:08 +00:00
|
|
|
const extname = require('path-complete-extname');
|
2023-05-23 15:15:17 +00:00
|
|
|
const webpack = require('webpack');
|
2018-12-31 17:11:48 +00:00
|
|
|
const AssetsManifestPlugin = require('webpack-assets-manifest');
|
2023-05-23 15:15:17 +00:00
|
|
|
|
2024-04-27 15:50:44 +00:00
|
|
|
const { env, settings, flavours, output } = require('./configuration');
|
2023-05-23 15:15:17 +00:00
|
|
|
const rules = require('./rules');
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2024-04-28 10:08:08 +00:00
|
|
|
const extensionGlob = `**/*{${settings.extensions.join(',')}}*`;
|
2022-02-11 22:06:37 +00:00
|
|
|
|
2024-04-28 10:08:08 +00:00
|
|
|
function reduceFlavourPacks(data, into = {}) {
|
|
|
|
const packPaths = sync(join(data.pack_directory, extensionGlob));
|
2022-02-11 22:06:37 +00:00
|
|
|
|
2024-04-28 10:08:08 +00:00
|
|
|
packPaths.forEach((entry) => {
|
|
|
|
const namespace = relative(join(data.pack_directory), dirname(entry));
|
|
|
|
into[`flavours/${data.name}/${join(namespace, basename(entry, extname(entry)))}`] = resolve(entry);
|
|
|
|
});
|
2022-02-11 22:06:37 +00:00
|
|
|
|
|
|
|
for (const skinName in data.skin) {
|
|
|
|
const skin = data.skin[skinName];
|
|
|
|
if (!skin) continue;
|
|
|
|
|
2024-04-27 20:34:41 +00:00
|
|
|
into[`skins/${data.name}/${skinName}`] = resolve(skin);
|
2017-12-01 03:29:47 +00:00
|
|
|
}
|
2022-02-11 22:06:37 +00:00
|
|
|
|
2017-11-21 06:13:37 +00:00
|
|
|
return into;
|
|
|
|
}
|
2017-06-01 18:56:32 +00:00
|
|
|
|
2018-07-28 14:42:13 +00:00
|
|
|
const entries = Object.assign(
|
2024-04-28 10:08:08 +00:00
|
|
|
Object.values(flavours).reduce((map, data) => reduceFlavourPacks(data, map), {}),
|
2018-07-28 14:42:13 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
|
2017-05-03 00:04:16 +00:00
|
|
|
module.exports = {
|
2024-01-15 21:16:26 +00:00
|
|
|
entry: entries,
|
2017-05-03 00:04:16 +00:00
|
|
|
|
|
|
|
output: {
|
2019-03-15 14:05:31 +00:00
|
|
|
filename: 'js/[name]-[chunkhash].js',
|
|
|
|
chunkFilename: 'js/[name]-[chunkhash].chunk.js',
|
|
|
|
hotUpdateChunkFilename: 'js/[id]-[hash].hot-update.js',
|
2022-04-01 21:55:32 +00:00
|
|
|
hashFunction: 'sha256',
|
2023-07-21 09:14:26 +00:00
|
|
|
crossOriginLoading: 'anonymous',
|
2017-06-18 00:57:09 +00:00
|
|
|
path: output.path,
|
|
|
|
publicPath: output.publicPath,
|
2017-05-03 00:04:16 +00:00
|
|
|
},
|
|
|
|
|
2018-07-14 01:56:41 +00:00
|
|
|
optimization: {
|
|
|
|
runtimeChunk: {
|
2023-06-10 15:43:13 +00:00
|
|
|
name: 'common',
|
2018-07-14 01:56:41 +00:00
|
|
|
},
|
|
|
|
splitChunks: {
|
|
|
|
cacheGroups: {
|
|
|
|
default: false,
|
|
|
|
vendors: false,
|
2018-07-28 14:42:13 +00:00
|
|
|
common: {
|
|
|
|
name: 'common',
|
|
|
|
chunks (chunk) {
|
|
|
|
return !(chunk.name in entries);
|
|
|
|
},
|
|
|
|
minChunks: 2,
|
2018-07-14 01:56:41 +00:00
|
|
|
minSize: 0,
|
2023-02-13 14:12:14 +00:00
|
|
|
test: /^(?!.*[\\/]node_modules[\\/]react-intl[\\/]).+$/,
|
2018-07-14 01:56:41 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
occurrenceOrder: true,
|
|
|
|
},
|
|
|
|
|
2017-05-03 00:04:16 +00:00
|
|
|
module: {
|
2019-03-15 14:05:31 +00:00
|
|
|
rules: Object.keys(rules).map(key => rules[key]),
|
2023-05-09 01:10:04 +00:00
|
|
|
strictExportPresence: true,
|
2017-05-03 00:04:16 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))),
|
2017-10-08 00:55:58 +00: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');
|
2020-03-08 15:02:36 +00:00
|
|
|
},
|
2017-10-08 00:55:58 +00:00
|
|
|
),
|
2018-07-14 01:56:41 +00:00
|
|
|
new MiniCssExtractPlugin({
|
2019-03-15 14:05:31 +00:00
|
|
|
filename: 'css/[name]-[contenthash:8].css',
|
|
|
|
chunkFilename: 'css/[name]-[contenthash:8].chunk.css',
|
2017-07-18 18:21:04 +00:00
|
|
|
}),
|
2018-12-31 17:11:48 +00:00
|
|
|
new AssetsManifestPlugin({
|
2020-11-06 10:56:31 +00:00
|
|
|
integrity: true,
|
|
|
|
integrityHashes: ['sha256'],
|
2019-03-15 14:05:31 +00:00
|
|
|
entrypoints: true,
|
2018-12-31 17:11:48 +00:00
|
|
|
writeToDisk: true,
|
2019-03-15 14:05:31 +00:00
|
|
|
publicPath: true,
|
2017-05-20 15:31:47 +00:00
|
|
|
}),
|
2023-08-22 11:24:16 +00:00
|
|
|
new CircularDependencyPlugin({
|
|
|
|
failOnError: true,
|
|
|
|
})
|
2017-05-03 00:04:16 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
2017-06-18 00:57:09 +00:00
|
|
|
extensions: settings.extensions,
|
2017-05-03 00:04:16 +00:00
|
|
|
modules: [
|
2017-06-18 00:57:09 +00:00
|
|
|
resolve(settings.source_path),
|
|
|
|
'node_modules',
|
2017-05-20 15:31:47 +00:00
|
|
|
],
|
2024-01-16 10:27:26 +00:00
|
|
|
alias: {
|
|
|
|
"@": resolve(settings.source_path),
|
|
|
|
}
|
2017-05-03 00:04:16 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
resolveLoader: {
|
2017-06-18 00:57:09 +00:00
|
|
|
modules: ['node_modules'],
|
2017-05-06 09:02:19 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
node: {
|
|
|
|
// Called by http-link-header in an API we never use, increases
|
|
|
|
// bundle size unnecessarily
|
2017-05-20 15:31:47 +00:00
|
|
|
Buffer: false,
|
|
|
|
},
|
|
|
|
};
|