Skip to content

fix(localizations): Export esCR from the localizations package #6207

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/violet-clubs-grin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clerk/localizations': patch
---

Include `esCR` in the package's exports
Copy link
Member

@alexcarpenter alexcarpenter Jun 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, missed that. Adding.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also files section in package.json.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me know if I can go ahead and merge or should I rather leave that to your team.

1 change: 1 addition & 0 deletions packages/localizations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"el-GR",
"en-GB",
"en-US",
"es-CR",
"es-ES",
"fi-FI",
"fr-FR",
Expand Down
1 change: 1 addition & 0 deletions packages/localizations/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export { deDE } from './de-DE';
export { elGR } from './el-GR';
export { enUS } from './en-US';
export { enGB } from './en-GB';
export { esCR } from './es-CR';
export { esES } from './es-ES';
export { esMX } from './es-MX';
export { esUY } from './es-UY';
Expand Down
2 changes: 2 additions & 0 deletions packages/localizations/src/utils/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { deDE } from '../de-DE';
import { elGR } from '../el-GR';
import { enGB } from '../en-GB';
import { enUS } from '../en-US';
import { esCR } from '../es-CR';
import { esES } from '../es-ES';
import { esMX } from '../es-MX';
import { fiFI } from '../fi-FI';
Expand Down Expand Up @@ -169,6 +170,7 @@ run(csCZ, 'cs-CZ');
run(daDK, 'da-DK');
run(deDE, 'de-DE');
run(enGB, 'en-GB');
run(esCR, 'es-CR');
run(esES, 'es-ES');
run(esMX, 'es-MX');
run(frFR, 'fr-FR');
Expand Down
Loading