2017-05-03 01:04:16 +01:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2023-05-07 17:22:25 +01:00
|
|
|
const { resolve } = require('path');
|
2023-05-23 16:15:17 +01:00
|
|
|
|
2023-08-22 12:24:16 +01:00
|
|
|
const CircularDependencyPlugin = require('circular-dependency-plugin');
|
2018-07-14 02:56:41 +01:00
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
2023-05-23 16:15:17 +01:00
|
|
|
const webpack = require('webpack');
|
2018-12-31 17:11:48 +00:00
|
|
|
const AssetsManifestPlugin = require('webpack-assets-manifest');
|
2023-05-23 16:15:17 +01:00
|
|
|
|
2023-05-07 17:22:25 +01:00
|
|
|
const { env, settings, core, flavours, output } = require('./configuration');
|
2023-05-23 16:15:17 +01:00
|
|
|
const rules = require('./rules');
|
2017-05-03 01:04:16 +01:00
|
|
|
|
2017-11-21 06:13:37 +00:00
|
|
|
function reducePacks (data, into = {}) {
|
2022-02-11 22:06:37 +00:00
|
|
|
if (!data.pack) return into;
|
|
|
|
|
|
|
|
for (const entry in data.pack) {
|
2017-11-21 06:13:37 +00:00
|
|
|
const pack = data.pack[entry];
|
2022-02-11 22:06:37 +00:00
|
|
|
if (!pack) continue;
|
|
|
|
|
2022-02-11 22:52:42 +00:00
|
|
|
let packFiles = [];
|
|
|
|
if (typeof pack === 'string')
|
|
|
|
packFiles = [pack];
|
|
|
|
else if (Array.isArray(pack))
|
|
|
|
packFiles = pack;
|
|
|
|
else
|
|
|
|
packFiles = [pack.filename];
|
|
|
|
|
|
|
|
if (packFiles) {
|
|
|
|
into[data.name ? `flavours/${data.name}/${entry}` : `core/${entry}`] = packFiles.map(packFile => resolve(data.pack_directory, packFile));
|
2022-02-11 22:06:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!data.name) return into;
|
|
|
|
|
|
|
|
for (const skinName in data.skin) {
|
|
|
|
const skin = data.skin[skinName];
|
|
|
|
if (!skin) continue;
|
|
|
|
|
|
|
|
for (const entry in skin) {
|
|
|
|
const packFile = skin[entry];
|
|
|
|
if (!packFile) continue;
|
|
|
|
|
|
|
|
into[`skins/${data.name}/${skinName}/${entry}`] = resolve(packFile);
|
2017-11-21 06:13:37 +00:00
|
|
|
}
|
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 19:56:32 +01:00
|
|
|
|
2018-07-28 15:42:13 +01:00
|
|
|
const entries = Object.assign(
|
|
|
|
reducePacks(core),
|
2023-05-07 17:22:25 +01:00
|
|
|
Object.values(flavours).reduce((map, data) => reducePacks(data, map), {}),
|
2018-07-28 15:42:13 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
|
2017-05-03 01:04:16 +01:00
|
|
|
module.exports = {
|
2024-01-15 21:16:26 +00:00
|
|
|
entry: entries,
|
2017-05-03 01:04:16 +01: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 22:55:32 +01:00
|
|
|
hashFunction: 'sha256',
|
2023-07-21 10:14:26 +01:00
|
|
|
crossOriginLoading: 'anonymous',
|
2017-06-18 01:57:09 +01:00
|
|
|
path: output.path,
|
|
|
|
publicPath: output.publicPath,
|
2017-05-03 01:04:16 +01:00
|
|
|
},
|
|
|
|
|
2018-07-14 02:56:41 +01:00
|
|
|
optimization: {
|
|
|
|
runtimeChunk: {
|
2023-06-10 16:43:13 +01:00
|
|
|
name: 'common',
|
2018-07-14 02:56:41 +01:00
|
|
|
},
|
|
|
|
splitChunks: {
|
|
|
|
cacheGroups: {
|
|
|
|
default: false,
|
|
|
|
vendors: false,
|
2018-07-28 15:42:13 +01:00
|
|
|
common: {
|
|
|
|
name: 'common',
|
|
|
|
chunks (chunk) {
|
|
|
|
return !(chunk.name in entries);
|
|
|
|
},
|
|
|
|
minChunks: 2,
|
2018-07-14 02:56:41 +01:00
|
|
|
minSize: 0,
|
2023-02-13 14:12:14 +00:00
|
|
|
test: /^(?!.*[\\/]node_modules[\\/]react-intl[\\/]).+$/,
|
2018-07-14 02:56:41 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
occurrenceOrder: true,
|
|
|
|
},
|
|
|
|
|
2017-05-03 01:04:16 +01:00
|
|
|
module: {
|
2019-03-15 14:05:31 +00:00
|
|
|
rules: Object.keys(rules).map(key => rules[key]),
|
2023-05-09 02:10:04 +01:00
|
|
|
strictExportPresence: true,
|
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');
|
2020-03-08 15:02:36 +00:00
|
|
|
},
|
2017-10-08 01:55:58 +01:00
|
|
|
),
|
2018-07-14 02:56:41 +01: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 19:21:04 +01: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 16:31:47 +01:00
|
|
|
}),
|
2023-08-22 12:24:16 +01:00
|
|
|
new CircularDependencyPlugin({
|
|
|
|
failOnError: true,
|
|
|
|
})
|
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
|
|
|
],
|
2024-01-16 10:27:26 +00:00
|
|
|
alias: {
|
|
|
|
"@": resolve(settings.source_path),
|
|
|
|
}
|
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,
|
|
|
|
},
|
|
|
|
};
|