Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch i18n-2@0.7.3 for the project I'm working on.
Here is the diff that solved my problem:
diff --git a/node_modules/i18n-2/i18n.js b/node_modules/i18n-2/i18n.js
index dda2fab..943d24c 100644
--- a/node_modules/i18n-2/i18n.js
+++ b/node_modules/i18n-2/i18n.js
@@ -456,6 +456,14 @@ i18n.prototype = {
return path.normalize(this.directory + '/' + locale + this.extension);
},
+ appendLocale: function (locale, data) {
+ this.locales[locale] = {...this.locales[locale], data}
+ },
+
+ getLocales: function () {
+ return this.locales
+ },
+
initLocale: function (locale, data) {
if (!this.locales[locale]) {
this.locales[locale] = data;
This issue body was partially generated by patch-package.
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
i18n-2@0.7.3for the project I'm working on.Here is the diff that solved my problem:
This issue body was partially generated by patch-package.