mirror of https://github.com/tootsuite/mastodon
92 lines
2.7 KiB
JavaScript
92 lines
2.7 KiB
JavaScript
const { readFileSync } = require('fs');
|
|
const { load } = require('js-yaml');
|
|
const { basename, join, resolve } = require('path');
|
|
const extname = require('path-complete-extname');
|
|
const { config, merge, webpackConfig: originalBaseWebpackConfig } = require('shakapacker');
|
|
const webpack = require('webpack');
|
|
const WebpackAssetsManifest = require('webpack-assets-manifest');
|
|
const env = require('../env');
|
|
const nodeModulesRule = require('../rules/node_modules');
|
|
const tesseractRule = require('../rules/tesseract');
|
|
const localePackPaths = require('../generateLocalePacks');
|
|
|
|
const themePath = resolve('config', 'themes.yml');
|
|
const themes = load(readFileSync(themePath), 'utf8');
|
|
|
|
/**
|
|
* @param {import('webpack').WebpackPluginInstance | ((this: webpack.Compiler, compiler: webpack.Compiler) => void)} plugin
|
|
* @returns {boolean}
|
|
*/
|
|
function isAllowedPlugin(plugin) {
|
|
return !(plugin instanceof WebpackAssetsManifest || plugin instanceof webpack.EnvironmentPlugin);
|
|
}
|
|
|
|
/** @type {import('webpack').Configuration} */
|
|
const baseWebpackConfig = {
|
|
...originalBaseWebpackConfig,
|
|
optimization: {},
|
|
plugins: originalBaseWebpackConfig.plugins.filter(isAllowedPlugin),
|
|
};
|
|
|
|
/** @type {import('webpack').Configuration} */
|
|
const options = {
|
|
target: 'web',
|
|
entry: {
|
|
...localePackPaths.reduce((map, entry) => ({
|
|
...map,
|
|
[basename(entry, extname(entry, extname(entry)))]: resolve(entry),
|
|
}), {}),
|
|
...Object.keys(themes).reduce((themePaths, name) => ({
|
|
...themePaths,
|
|
[name]: resolve(join(config.source_path, themes[name])),
|
|
}), {}),
|
|
},
|
|
module: {
|
|
rules: [
|
|
nodeModulesRule,
|
|
tesseractRule,
|
|
],
|
|
},
|
|
optimization: {
|
|
chunkIds: 'total-size',
|
|
moduleIds: 'size',
|
|
runtimeChunk: {
|
|
name: 'common',
|
|
},
|
|
splitChunks: {
|
|
cacheGroups: {
|
|
default: false,
|
|
vendors: false,
|
|
common: {
|
|
name: 'common',
|
|
chunks: 'all',
|
|
minChunks: 2,
|
|
minSize: 0,
|
|
test: /^(?!.*[\\\/]node_modules[\\\/]react-intl[\\\/]).+$/,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))),
|
|
new WebpackAssetsManifest({
|
|
entrypoints: true,
|
|
entrypointsUseAssets: true,
|
|
integrity: true,
|
|
integrityHashes: ['sha256'],
|
|
output: config.manifestPath,
|
|
publicPath: true,
|
|
writeToDisk: true,
|
|
}),
|
|
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');
|
|
},
|
|
),
|
|
],
|
|
};
|
|
|
|
module.exports = merge({}, baseWebpackConfig, options);
|