mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-23 21:49:54 +05:30
Improve chunks for locales
This commit is contained in:
parent
75a7de2af2
commit
bc88f56f43
@ -188,9 +188,9 @@ Build:
|
|||||||
- find . -name '*.js' | cpio -pdm ../source-maps/
|
- find . -name '*.js' | cpio -pdm ../source-maps/
|
||||||
- cd ..
|
- cd ..
|
||||||
# Cleanup source maps for unimportant bundles
|
# Cleanup source maps for unimportant bundles
|
||||||
|
- rm -f source-maps/runtime.js
|
||||||
|
- rm -f source-maps/intl-polyfills.js
|
||||||
- rm -rf source-maps/locale-*
|
- rm -rf source-maps/locale-*
|
||||||
- rm -rf source-maps/intl*
|
|
||||||
- rm -rf source-maps/vendors~*
|
|
||||||
artifacts:
|
artifacts:
|
||||||
name: "Production build for $CI_COMMIT_BRANCH-$CI_COMMIT_SHORT_SHA"
|
name: "Production build for $CI_COMMIT_BRANCH-$CI_COMMIT_SHORT_SHA"
|
||||||
paths:
|
paths:
|
||||||
|
@ -211,11 +211,7 @@ const webpackConfig = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (isAnalyze) {
|
if (isAnalyze) {
|
||||||
webpackConfig.plugins.push(
|
webpackConfig.plugins.push(new BundleAnalyzerPlugin());
|
||||||
new BundleAnalyzerPlugin({
|
|
||||||
excludeAssets: /^(vendors~intl|locale-|intl)/,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isProduction) {
|
if (isProduction) {
|
||||||
@ -250,14 +246,39 @@ if (isProduction) {
|
|||||||
splitChunks: {
|
splitChunks: {
|
||||||
cacheGroups: {
|
cacheGroups: {
|
||||||
vendor: {
|
vendor: {
|
||||||
test: (m) =>
|
|
||||||
String(m.context).includes('node_modules') &&
|
|
||||||
// icons and intl with relateed polyfills are allowed
|
|
||||||
// to be splitted to other chunks
|
|
||||||
!/\/(flag-icon-css|intl|@formatjs)\//.test(String(m.context)),
|
|
||||||
name: 'vendors',
|
name: 'vendors',
|
||||||
|
priority: 0,
|
||||||
|
test: (m) => String(m.context).includes('node_modules'),
|
||||||
chunks: 'all',
|
chunks: 'all',
|
||||||
},
|
},
|
||||||
|
polyfills: {
|
||||||
|
name: 'intl-polyfills',
|
||||||
|
priority: 1,
|
||||||
|
chunks: ({ name }) => ['intl', 'intl-pluralrules', 'intl-relativetimeformat'].includes(name),
|
||||||
|
enforce: true,
|
||||||
|
},
|
||||||
|
...SUPPORTED_LANGUAGES.reduce((acc, locale) => {
|
||||||
|
const localePolyfills = [
|
||||||
|
`intl-${locale}-js`,
|
||||||
|
`intl-pluralrules-${locale}-js`,
|
||||||
|
`intl-relativetimeformat-${locale}-js`,
|
||||||
|
];
|
||||||
|
|
||||||
|
acc[locale] = {
|
||||||
|
name: `locale-${locale}`,
|
||||||
|
priority: 1,
|
||||||
|
chunks: ({ name }) => name === `locale-${locale}-json`,
|
||||||
|
enforce: true,
|
||||||
|
};
|
||||||
|
acc[`${locale}Polyfill`] = {
|
||||||
|
name: `locale-${locale}-polyfill`,
|
||||||
|
priority: 2,
|
||||||
|
chunks: ({ name }) => localePolyfills.includes(name),
|
||||||
|
enforce: true,
|
||||||
|
};
|
||||||
|
|
||||||
|
return acc;
|
||||||
|
}, {}),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user