Skip to content

Commit 01a0f29

Browse files
authored
fix(localizations): Export esCR from the localizations package (#6207)
1 parent 17b88c0 commit 01a0f29

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

.changeset/violet-clubs-grin.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+
Include `esCR` in the package's exports

packages/localizations/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
"el-GR",
6262
"en-GB",
6363
"en-US",
64+
"es-CR",
6465
"es-ES",
6566
"fi-FI",
6667
"fr-FR",

packages/localizations/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export { deDE } from './de-DE';
88
export { elGR } from './el-GR';
99
export { enUS } from './en-US';
1010
export { enGB } from './en-GB';
11+
export { esCR } from './es-CR';
1112
export { esES } from './es-ES';
1213
export { esMX } from './es-MX';
1314
export { esUY } from './es-UY';

packages/localizations/src/utils/generate.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { deDE } from '../de-DE';
1919
import { elGR } from '../el-GR';
2020
import { enGB } from '../en-GB';
2121
import { enUS } from '../en-US';
22+
import { esCR } from '../es-CR';
2223
import { esES } from '../es-ES';
2324
import { esMX } from '../es-MX';
2425
import { fiFI } from '../fi-FI';
@@ -169,6 +170,7 @@ run(csCZ, 'cs-CZ');
169170
run(daDK, 'da-DK');
170171
run(deDE, 'de-DE');
171172
run(enGB, 'en-GB');
173+
run(esCR, 'es-CR');
172174
run(esES, 'es-ES');
173175
run(esMX, 'es-MX');
174176
run(frFR, 'fr-FR');

0 commit comments

Comments
 (0)