Skip to content

Commit 2b8fe23

Browse files
authored
fix(localizations): Fix Hungarian language subpath exports (#3206)
1 parent 9316bc2 commit 2b8fe23

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

.changeset/lemon-bats-look.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/localizations': patch
3+
---
4+
5+
Fix Hungarian language subpath exports

packages/localizations/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@
8383
"zh-TW",
8484
"es-MX",
8585
"bg-BG",
86-
"th-TH"
86+
"th-TH",
87+
"hu-HU"
8788
],
8889
"scripts": {
8990
"build": "tsup --env.NODE_ENV production",

packages/localizations/src/utils/generate.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import { esES } from '../es-ES';
2020
import { esMX } from '../es-MX';
2121
import { frFR } from '../fr-FR';
2222
import { heIL } from '../he-IL';
23+
import { huHU } from '../hu-HU';
2324
import { itIT } from '../it-IT';
2425
import { jaJP } from '../ja-JP';
2526
import { koKR } from '../ko-KR';
@@ -182,3 +183,4 @@ run(zhCN, 'zh-CN');
182183
run(zhTW, 'zh-TW');
183184
run(bgBG, 'bg-BG');
184185
run(thTH, 'th-TH');
186+
run(huHU, 'hu-HU');

packages/localizations/subpaths.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export const subpathNames = [
3434
'bg-BG',
3535
'th-TH',
3636
'ca-ES',
37+
'hu-HU',
3738
];
3839

3940
export const subpathFoldersBarrel = [];

0 commit comments

Comments
 (0)