We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a8725d commit 3847055Copy full SHA for 3847055
src/config-utils.ts
@@ -1174,7 +1174,7 @@ function shouldCombinePacks(packsInput?: string): boolean {
1174
function combinePacks(packs1: Packs, packs2: Packs): Packs {
1175
const packs = {};
1176
for (const lang of Object.keys(packs1)) {
1177
- packs[lang] = packs1[lang].concat(packs2[lang] || []);
+ packs[lang] = packs1[lang]?.concat(packs2[lang] || []);
1178
}
1179
for (const lang of Object.keys(packs2)) {
1180
if (!packs[lang]) {
0 commit comments