refactor: move I18N_COOKIE_NAME to @tooling/internationalization package#96
Merged
adelrodriguez merged 1 commit intomainfrom Feb 19, 2026
Conversation
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This was referenced Feb 19, 2026
Collaborator
Author
fda02a8 to
351fcfe
Compare
6741b4e to
4dc6b5f
Compare
351fcfe to
4e09225
Compare
4dc6b5f to
8224d45
Compare
4e09225 to
1593a41
Compare
e488cf2 to
85e4f22
Compare
cbaf5a1 to
c8a3d5d
Compare
0a35984 to
bebe06f
Compare
c8a3d5d to
025d97b
Compare
bebe06f to
ef357e0
Compare
407dc33 to
100bcd4
Compare
ef357e0 to
fcc2d1a
Compare
100bcd4 to
68bf454
Compare
fcc2d1a to
3535399
Compare
68bf454 to
2f9f03c
Compare
3535399 to
09e50e2
Compare
09e50e2 to
89c9dd4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Move I18N_COOKIE_NAME to @tooling/internationalization package
This PR moves the
I18N_COOKIE_NAMEconstant from the utils package to the internationalization tooling package, creating a proper export structure for the internationalization package.Changes:
I18N_COOKIE_NAMEfrompackages/utils/src/constants/app.tstooling/internationalization/src/index.tsfor the constantGreptile Summary
This PR refactors the
I18N_COOKIE_NAMEconstant from the utils package to the internationalization tooling package, improving code organization by consolidating internationalization-related constants.Key changes:
@tooling/internationalizationpackage with proper TypeScript configurationI18N_COOKIE_NAMEconstant totooling/internationalization/src/index.tsapps/app/vite.config.tsto use new package location@tooling/internationalizationas devDependency in app packagepackages/utils/src/constants/app.tsReview findings:
type: "module"and exports fieldtooling/*patternConfidence Score: 5/5
Important Files Changed
I18N_COOKIE_NAMEconstant, properly structuredI18N_COOKIE_NAMEexport, leavingAPP_NAMEandAPP_IDintact@tooling/internationalizationpackageFlowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A["`packages/utils/src/constants/app.ts`"] -->|"Removed I18N_COOKIE_NAME"| B["`tooling/internationalization/src/index.ts`"] B -->|"Exports I18N_COOKIE_NAME"| C["`tooling/internationalization/package.json`"] C -->|"Added exports field"| D["`apps/app/vite.config.ts`"] D -->|"Updated import"| E["Uses I18N_COOKIE_NAME in paraglide plugin"] F["`apps/app/package.json`"] -->|"Added devDependency"| C style B fill:#90EE90 style C fill:#90EE90 style A fill:#FFB6C1 style D fill:#87CEEB style F fill:#87CEEBLast reviewed commit: 89c9dd4