-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
refactor: move i18n service to npm #6193
Conversation
Signed-off-by: Maria Paktiti <[email protected]>
Signed-off-by: Maria Paktiti <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good overall, a few small things
Signed-off-by: Maria Paktiti <[email protected]>
@@ -9,6 +9,7 @@ const externalNodeModules = [ | |||
"@reactioncommerce/api-plugin-accounts", | |||
"@reactioncommerce/api-plugin-address-validation", | |||
"@reactioncommerce/api-plugin-address-validation-test", | |||
"@reactioncommerce/api-plugin-i18n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kieckhafer should I also move lines 7+8 under the api-plugin-i18n
or they are left there for a reason?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No reason, I updated them.
Signed-off-by: Erik Kieckhafer <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 changes approved
Resolves #6173
This PR removes the internal
i18n
service and installs the new api-plugin-i18n npm package as its replacement.The code in this npm package is the same, and has already been tested, so the expected outcome of this PR is seeing nothing different than how the app currently runs.
Signed-off-by: Maria Paktiti [email protected]