@next-core/i18n 1.0.17 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"init.js","names":["_i18n","require","_i18nextBrowserLanguagedetector","_interopRequireDefault","initialized","initializedNamespaces","Set","initializeI18n","NS","locales","i18n","use","process","env","NODE_ENV","LanguageDetector","default","init","fallbackLng","debug","supportedLngs","nonExplicitSupportedLngs","interpolation","escapeValue","react","useSuspense","compatibilityJSON","resources","has","add","lang","Object","entries","addResourceBundle"],"sources":["../../src/init.ts"],"sourcesContent":["import { i18n } from \"@next-core/i18n\";\nimport LanguageDetector from \"i18next-browser-languagedetector\";\n\nlet initialized = false;\nconst initializedNamespaces = new Set<string>();\n\nexport type Locales = Record<string, Record<string, string>>;\n\nexport function initializeI18n(): void;\nexport function initializeI18n(NS: string, locales: Locales): void;\nexport function initializeI18n(NS?: string, locales?: Locales) {\n if (!initialized) {\n initialized = true;\n i18n\n // learn more: https://github.com/i18next/i18next-xhr-backend\n // .use(Backend)\n // learn more: https://github.com/i18next/i18next-browser-languageDetector\n .use(\n process.env.NODE_ENV === \"test\"\n ? (LanguageDetector as unknown as LanguageDetector.default)\n : /* istanbul ignore next */ LanguageDetector.default\n )\n // for all options read: https://www.i18next.com/overview/configuration-options\n .init({\n fallbackLng: \"zh\",\n debug: process.env.NODE_ENV === \"development\",\n supportedLngs: [\"zh\", \"en\"],\n nonExplicitSupportedLngs: true,\n interpolation: {\n escapeValue: false, // not needed for react as it escapes by default\n },\n react: {\n useSuspense: false,\n },\n compatibilityJSON: \"v3\",\n resources: {},\n });\n }\n\n if (!NS || !locales || initializedNamespaces.has(NS)) {\n return;\n }\n initializedNamespaces.add(NS);\n for (const [lang, resources] of Object.entries(locales)) {\n i18n.addResourceBundle(lang, NS, resources);\n }\n}\n"],"mappings":";;;;;;;AAAA,IAAAA,KAAA,GAAAC,OAAA;AACA,IAAAC,+BAAA,GAAAC,sBAAA,CAAAF,OAAA;AAEA,IAAIG,WAAW,GAAG,KAAK;AACvB,MAAMC,qBAAqB,GAAG,IAAIC,GAAG,EAAU;AAMxC,SAASC,cAAcA,CAACC,EAAW,EAAEC,OAAiB,EAAE;EAC7D,IAAI,CAACL,WAAW,EAAE;IAChBA,WAAW,GAAG,IAAI;IAClBM;IACE;IACA;IACA;IAAA,CACCC,GAAG,CACFC,OAAO,CAACC,GAAG,CAACC,QAAQ,KAAK,MAAM,GAC1BC,uCAAgB,GACjB,0BAA2BA,uCAAgB,CAACC,OAAO;IAEzD;IAAA,CACCC,IAAI,CAAC;MACJC,WAAW,EAAE,IAAI;MACjBC,KAAK,EAAEP,OAAO,CAACC,GAAG,CAACC,QAAQ,KAAK,aAAa;MAC7CM,aAAa,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;MAC3BC,wBAAwB,EAAE,IAAI;MAC9BC,aAAa,EAAE;QACbC,WAAW,EAAE,KAAK,CAAE;MACtB,CAAC;;MACDC,KAAK,EAAE;QACLC,WAAW,EAAE;MACf,CAAC;MACDC,iBAAiB,EAAE,IAAI;MACvBC,SAAS,EAAE,CAAC;IACd,CAAC,CAAC;EACN;EAEA,IAAI,CAACnB,EAAE,IAAI,CAACC,OAAO,IAAIJ,qBAAqB,CAACuB,GAAG,CAACpB,EAAE,CAAC,EAAE;IACpD;EACF;EACAH,qBAAqB,CAACwB,GAAG,CAACrB,EAAE,CAAC;EAC7B,KAAK,MAAM,CAACsB,IAAI,EAAEH,SAAS,CAAC,IAAII,MAAM,CAACC,OAAO,CAACvB,OAAO,CAAC,EAAE;IACvDC,UAAI,CAACuB,iBAAiB,CAACH,IAAI,EAAEtB,EAAE,EAAEmB,SAAS,CAAC;EAC7C;AACF"}
1
+ {"version":3,"file":"init.js","names":["_i18n","require","_i18nextBrowserLanguagedetector","_interopRequireDefault","initialized","initializedNamespaces","Set","initializeI18n","NS","locales","i18n","use","process","env","NODE_ENV","LanguageDetector","default","init","fallbackLng","debug","supportedLngs","nonExplicitSupportedLngs","interpolation","escapeValue","react","useSuspense","compatibilityJSON","resources","has","add","lang","Object","entries","addResourceBundle"],"sources":["../../src/init.ts"],"sourcesContent":["import { i18n } from \"@next-core/i18n\";\nimport LanguageDetector from \"i18next-browser-languagedetector\";\n\nlet initialized = false;\nconst initializedNamespaces = new Set<string>();\n\nexport type Locales = Record<string, Record<string, string>>;\n\nexport function initializeI18n(): void;\nexport function initializeI18n(NS: string, locales: Locales): void;\nexport function initializeI18n(NS?: string, locales?: Locales) {\n if (!initialized) {\n initialized = true;\n i18n\n // learn more: https://github.com/i18next/i18next-xhr-backend\n // .use(Backend)\n // learn more: https://github.com/i18next/i18next-browser-languageDetector\n .use(\n process.env.NODE_ENV === \"test\"\n ? (LanguageDetector as unknown as LanguageDetector.default)\n : /* istanbul ignore next */ LanguageDetector.default\n )\n // for all options read: https://www.i18next.com/overview/configuration-options\n .init({\n fallbackLng: \"zh\",\n debug: process.env.NODE_ENV === \"development\",\n supportedLngs: [\"zh\", \"en\"],\n nonExplicitSupportedLngs: true,\n interpolation: {\n escapeValue: false, // not needed for react as it escapes by default\n },\n react: {\n useSuspense: false,\n },\n compatibilityJSON: \"v3\",\n resources: {},\n });\n }\n\n if (!NS || !locales || initializedNamespaces.has(NS)) {\n return;\n }\n initializedNamespaces.add(NS);\n for (const [lang, resources] of Object.entries(locales)) {\n i18n.addResourceBundle(lang, NS, resources);\n }\n}\n"],"mappings":";;;;;;;AAAA,IAAAA,KAAA,GAAAC,OAAA;AACA,IAAAC,+BAAA,GAAAC,sBAAA,CAAAF,OAAA;AAEA,IAAIG,WAAW,GAAG,KAAK;AACvB,MAAMC,qBAAqB,GAAG,IAAIC,GAAG,CAAS,CAAC;AAMxC,SAASC,cAAcA,CAACC,EAAW,EAAEC,OAAiB,EAAE;EAC7D,IAAI,CAACL,WAAW,EAAE;IAChBA,WAAW,GAAG,IAAI;IAClBM;IACE;IACA;IACA;IAAA,CACCC,GAAG,CACFC,OAAO,CAACC,GAAG,CAACC,QAAQ,KAAK,MAAM,GAC1BC,uCAAgB,GACjB,0BAA2BA,uCAAgB,CAACC,OAClD;IACA;IAAA,CACCC,IAAI,CAAC;MACJC,WAAW,EAAE,IAAI;MACjBC,KAAK,EAAEP,OAAO,CAACC,GAAG,CAACC,QAAQ,KAAK,aAAa;MAC7CM,aAAa,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;MAC3BC,wBAAwB,EAAE,IAAI;MAC9BC,aAAa,EAAE;QACbC,WAAW,EAAE,KAAK,CAAE;MACtB,CAAC;;MACDC,KAAK,EAAE;QACLC,WAAW,EAAE;MACf,CAAC;MACDC,iBAAiB,EAAE,IAAI;MACvBC,SAAS,EAAE,CAAC;IACd,CAAC,CAAC;EACN;EAEA,IAAI,CAACnB,EAAE,IAAI,CAACC,OAAO,IAAIJ,qBAAqB,CAACuB,GAAG,CAACpB,EAAE,CAAC,EAAE;IACpD;EACF;EACAH,qBAAqB,CAACwB,GAAG,CAACrB,EAAE,CAAC;EAC7B,KAAK,MAAM,CAACsB,IAAI,EAAEH,SAAS,CAAC,IAAII,MAAM,CAACC,OAAO,CAACvB,OAAO,CAAC,EAAE;IACvDC,UAAI,CAACuB,iBAAiB,CAACH,IAAI,EAAEtB,EAAE,EAAEmB,SAAS,CAAC;EAC7C;AACF"}
@@ -1 +1 @@
1
- {"version":3,"file":"react.js","names":["_i18n","require","_reactI18next","initialized","initializeReactI18n","NS","locales","initializeI18n","initReactI18next","init","i18n"],"sources":["../../src/react.ts"],"sourcesContent":["import { i18n, initializeI18n, Locales } from \"@next-core/i18n\";\nimport { initReactI18next, useTranslation } from \"react-i18next\";\n\nlet initialized = false;\n\nexport function initializeReactI18n(): void;\nexport function initializeReactI18n(NS: string, locales: Locales): void;\nexport function initializeReactI18n(NS?: string, locales?: Locales) {\n initializeI18n(NS as string, locales as Locales);\n if (!initialized) {\n initialized = true;\n initReactI18next.init(i18n);\n }\n}\n\nexport { useTranslation };\n"],"mappings":";;;;;;;;;;;;AAAA,IAAAA,KAAA,GAAAC,OAAA;AACA,IAAAC,aAAA,GAAAD,OAAA;AAEA,IAAIE,WAAW,GAAG,KAAK;AAIhB,SAASC,mBAAmBA,CAACC,EAAW,EAAEC,OAAiB,EAAE;EAClE,IAAAC,oBAAc,EAACF,EAAE,EAAYC,OAAO,CAAY;EAChD,IAAI,CAACH,WAAW,EAAE;IAChBA,WAAW,GAAG,IAAI;IAClBK,8BAAgB,CAACC,IAAI,CAACC,UAAI,CAAC;EAC7B;AACF"}
1
+ {"version":3,"file":"react.js","names":["_i18n","require","_reactI18next","initialized","initializeReactI18n","NS","locales","initializeI18n","initReactI18next","init","i18n"],"sources":["../../src/react.ts"],"sourcesContent":["import { i18n, initializeI18n, Locales } from \"@next-core/i18n\";\nimport { initReactI18next, useTranslation } from \"react-i18next\";\n\nlet initialized = false;\n\nexport function initializeReactI18n(): void;\nexport function initializeReactI18n(NS: string, locales: Locales): void;\nexport function initializeReactI18n(NS?: string, locales?: Locales) {\n initializeI18n(NS as string, locales as Locales);\n if (!initialized) {\n initialized = true;\n initReactI18next.init(i18n);\n }\n}\n\nexport { useTranslation };\n"],"mappings":";;;;;;;;;;;;AAAA,IAAAA,KAAA,GAAAC,OAAA;AACA,IAAAC,aAAA,GAAAD,OAAA;AAEA,IAAIE,WAAW,GAAG,KAAK;AAIhB,SAASC,mBAAmBA,CAACC,EAAW,EAAEC,OAAiB,EAAE;EAClE,IAAAC,oBAAc,EAACF,EAAE,EAAYC,OAAkB,CAAC;EAChD,IAAI,CAACH,WAAW,EAAE;IAChBA,WAAW,GAAG,IAAI;IAClBK,8BAAgB,CAACC,IAAI,CAACC,UAAI,CAAC;EAC7B;AACF"}
@@ -1 +1 @@
1
- {"version":3,"file":"init.js","names":["i18n","LanguageDetector","initialized","initializedNamespaces","Set","initializeI18n","NS","locales","use","process","env","NODE_ENV","default","init","fallbackLng","debug","supportedLngs","nonExplicitSupportedLngs","interpolation","escapeValue","react","useSuspense","compatibilityJSON","resources","has","add","lang","Object","entries","addResourceBundle"],"sources":["../../src/init.ts"],"sourcesContent":["import { i18n } from \"@next-core/i18n\";\nimport LanguageDetector from \"i18next-browser-languagedetector\";\n\nlet initialized = false;\nconst initializedNamespaces = new Set<string>();\n\nexport type Locales = Record<string, Record<string, string>>;\n\nexport function initializeI18n(): void;\nexport function initializeI18n(NS: string, locales: Locales): void;\nexport function initializeI18n(NS?: string, locales?: Locales) {\n if (!initialized) {\n initialized = true;\n i18n\n // learn more: https://github.com/i18next/i18next-xhr-backend\n // .use(Backend)\n // learn more: https://github.com/i18next/i18next-browser-languageDetector\n .use(\n process.env.NODE_ENV === \"test\"\n ? (LanguageDetector as unknown as LanguageDetector.default)\n : /* istanbul ignore next */ LanguageDetector.default\n )\n // for all options read: https://www.i18next.com/overview/configuration-options\n .init({\n fallbackLng: \"zh\",\n debug: process.env.NODE_ENV === \"development\",\n supportedLngs: [\"zh\", \"en\"],\n nonExplicitSupportedLngs: true,\n interpolation: {\n escapeValue: false, // not needed for react as it escapes by default\n },\n react: {\n useSuspense: false,\n },\n compatibilityJSON: \"v3\",\n resources: {},\n });\n }\n\n if (!NS || !locales || initializedNamespaces.has(NS)) {\n return;\n }\n initializedNamespaces.add(NS);\n for (const [lang, resources] of Object.entries(locales)) {\n i18n.addResourceBundle(lang, NS, resources);\n }\n}\n"],"mappings":"AAAA,SAASA,IAAI,QAAQ,iBAAiB;AACtC,OAAOC,gBAAgB,MAAM,kCAAkC;AAE/D,IAAIC,WAAW,GAAG,KAAK;AACvB,IAAMC,qBAAqB,GAAG,IAAIC,GAAG,EAAU;AAM/C,OAAO,SAASC,cAAcA,CAACC,EAAW,EAAEC,OAAiB,EAAE;EAC7D,IAAI,CAACL,WAAW,EAAE;IAChBA,WAAW,GAAG,IAAI;IAClBF;IACE;IACA;IACA;IAAA,CACCQ,GAAG,CACFC,OAAO,CAACC,GAAG,CAACC,QAAQ,KAAK,MAAM,GAC1BV,gBAAgB,GACjB,0BAA2BA,gBAAgB,CAACW,OAAO;IAEzD;IAAA,CACCC,IAAI,CAAC;MACJC,WAAW,EAAE,IAAI;MACjBC,KAAK,EAAEN,OAAO,CAACC,GAAG,CAACC,QAAQ,KAAK,aAAa;MAC7CK,aAAa,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;MAC3BC,wBAAwB,EAAE,IAAI;MAC9BC,aAAa,EAAE;QACbC,WAAW,EAAE,KAAK,CAAE;MACtB,CAAC;;MACDC,KAAK,EAAE;QACLC,WAAW,EAAE;MACf,CAAC;MACDC,iBAAiB,EAAE,IAAI;MACvBC,SAAS,EAAE,CAAC;IACd,CAAC,CAAC;EACN;EAEA,IAAI,CAACjB,EAAE,IAAI,CAACC,OAAO,IAAIJ,qBAAqB,CAACqB,GAAG,CAAClB,EAAE,CAAC,EAAE;IACpD;EACF;EACAH,qBAAqB,CAACsB,GAAG,CAACnB,EAAE,CAAC;EAC7B,KAAK,IAAM,CAACoB,IAAI,EAAEH,SAAS,CAAC,IAAII,MAAM,CAACC,OAAO,CAACrB,OAAO,CAAC,EAAE;IACvDP,IAAI,CAAC6B,iBAAiB,CAACH,IAAI,EAAEpB,EAAE,EAAEiB,SAAS,CAAC;EAC7C;AACF"}
1
+ {"version":3,"file":"init.js","names":["i18n","LanguageDetector","initialized","initializedNamespaces","Set","initializeI18n","NS","locales","use","process","env","NODE_ENV","default","init","fallbackLng","debug","supportedLngs","nonExplicitSupportedLngs","interpolation","escapeValue","react","useSuspense","compatibilityJSON","resources","has","add","lang","Object","entries","addResourceBundle"],"sources":["../../src/init.ts"],"sourcesContent":["import { i18n } from \"@next-core/i18n\";\nimport LanguageDetector from \"i18next-browser-languagedetector\";\n\nlet initialized = false;\nconst initializedNamespaces = new Set<string>();\n\nexport type Locales = Record<string, Record<string, string>>;\n\nexport function initializeI18n(): void;\nexport function initializeI18n(NS: string, locales: Locales): void;\nexport function initializeI18n(NS?: string, locales?: Locales) {\n if (!initialized) {\n initialized = true;\n i18n\n // learn more: https://github.com/i18next/i18next-xhr-backend\n // .use(Backend)\n // learn more: https://github.com/i18next/i18next-browser-languageDetector\n .use(\n process.env.NODE_ENV === \"test\"\n ? (LanguageDetector as unknown as LanguageDetector.default)\n : /* istanbul ignore next */ LanguageDetector.default\n )\n // for all options read: https://www.i18next.com/overview/configuration-options\n .init({\n fallbackLng: \"zh\",\n debug: process.env.NODE_ENV === \"development\",\n supportedLngs: [\"zh\", \"en\"],\n nonExplicitSupportedLngs: true,\n interpolation: {\n escapeValue: false, // not needed for react as it escapes by default\n },\n react: {\n useSuspense: false,\n },\n compatibilityJSON: \"v3\",\n resources: {},\n });\n }\n\n if (!NS || !locales || initializedNamespaces.has(NS)) {\n return;\n }\n initializedNamespaces.add(NS);\n for (const [lang, resources] of Object.entries(locales)) {\n i18n.addResourceBundle(lang, NS, resources);\n }\n}\n"],"mappings":"AAAA,SAASA,IAAI,QAAQ,iBAAiB;AACtC,OAAOC,gBAAgB,MAAM,kCAAkC;AAE/D,IAAIC,WAAW,GAAG,KAAK;AACvB,IAAMC,qBAAqB,GAAG,IAAIC,GAAG,CAAS,CAAC;AAM/C,OAAO,SAASC,cAAcA,CAACC,EAAW,EAAEC,OAAiB,EAAE;EAC7D,IAAI,CAACL,WAAW,EAAE;IAChBA,WAAW,GAAG,IAAI;IAClBF;IACE;IACA;IACA;IAAA,CACCQ,GAAG,CACFC,OAAO,CAACC,GAAG,CAACC,QAAQ,KAAK,MAAM,GAC1BV,gBAAgB,GACjB,0BAA2BA,gBAAgB,CAACW,OAClD;IACA;IAAA,CACCC,IAAI,CAAC;MACJC,WAAW,EAAE,IAAI;MACjBC,KAAK,EAAEN,OAAO,CAACC,GAAG,CAACC,QAAQ,KAAK,aAAa;MAC7CK,aAAa,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;MAC3BC,wBAAwB,EAAE,IAAI;MAC9BC,aAAa,EAAE;QACbC,WAAW,EAAE,KAAK,CAAE;MACtB,CAAC;;MACDC,KAAK,EAAE;QACLC,WAAW,EAAE;MACf,CAAC;MACDC,iBAAiB,EAAE,IAAI;MACvBC,SAAS,EAAE,CAAC;IACd,CAAC,CAAC;EACN;EAEA,IAAI,CAACjB,EAAE,IAAI,CAACC,OAAO,IAAIJ,qBAAqB,CAACqB,GAAG,CAAClB,EAAE,CAAC,EAAE;IACpD;EACF;EACAH,qBAAqB,CAACsB,GAAG,CAACnB,EAAE,CAAC;EAC7B,KAAK,IAAM,CAACoB,IAAI,EAAEH,SAAS,CAAC,IAAII,MAAM,CAACC,OAAO,CAACrB,OAAO,CAAC,EAAE;IACvDP,IAAI,CAAC6B,iBAAiB,CAACH,IAAI,EAAEpB,EAAE,EAAEiB,SAAS,CAAC;EAC7C;AACF"}
@@ -1 +1 @@
1
- {"version":3,"file":"react.js","names":["i18n","initializeI18n","initReactI18next","useTranslation","initialized","initializeReactI18n","NS","locales","init"],"sources":["../../src/react.ts"],"sourcesContent":["import { i18n, initializeI18n, Locales } from \"@next-core/i18n\";\nimport { initReactI18next, useTranslation } from \"react-i18next\";\n\nlet initialized = false;\n\nexport function initializeReactI18n(): void;\nexport function initializeReactI18n(NS: string, locales: Locales): void;\nexport function initializeReactI18n(NS?: string, locales?: Locales) {\n initializeI18n(NS as string, locales as Locales);\n if (!initialized) {\n initialized = true;\n initReactI18next.init(i18n);\n }\n}\n\nexport { useTranslation };\n"],"mappings":"AAAA,SAASA,IAAI,EAAEC,cAAc,QAAiB,iBAAiB;AAC/D,SAASC,gBAAgB,EAAEC,cAAc,QAAQ,eAAe;AAEhE,IAAIC,WAAW,GAAG,KAAK;AAIvB,OAAO,SAASC,mBAAmBA,CAACC,EAAW,EAAEC,OAAiB,EAAE;EAClEN,cAAc,CAACK,EAAE,EAAYC,OAAO,CAAY;EAChD,IAAI,CAACH,WAAW,EAAE;IAChBA,WAAW,GAAG,IAAI;IAClBF,gBAAgB,CAACM,IAAI,CAACR,IAAI,CAAC;EAC7B;AACF;AAEA,SAASG,cAAc"}
1
+ {"version":3,"file":"react.js","names":["i18n","initializeI18n","initReactI18next","useTranslation","initialized","initializeReactI18n","NS","locales","init"],"sources":["../../src/react.ts"],"sourcesContent":["import { i18n, initializeI18n, Locales } from \"@next-core/i18n\";\nimport { initReactI18next, useTranslation } from \"react-i18next\";\n\nlet initialized = false;\n\nexport function initializeReactI18n(): void;\nexport function initializeReactI18n(NS: string, locales: Locales): void;\nexport function initializeReactI18n(NS?: string, locales?: Locales) {\n initializeI18n(NS as string, locales as Locales);\n if (!initialized) {\n initialized = true;\n initReactI18next.init(i18n);\n }\n}\n\nexport { useTranslation };\n"],"mappings":"AAAA,SAASA,IAAI,EAAEC,cAAc,QAAiB,iBAAiB;AAC/D,SAASC,gBAAgB,EAAEC,cAAc,QAAQ,eAAe;AAEhE,IAAIC,WAAW,GAAG,KAAK;AAIvB,OAAO,SAASC,mBAAmBA,CAACC,EAAW,EAAEC,OAAiB,EAAE;EAClEN,cAAc,CAACK,EAAE,EAAYC,OAAkB,CAAC;EAChD,IAAI,CAACH,WAAW,EAAE;IAChBA,WAAW,GAAG,IAAI;IAClBF,gBAAgB,CAACM,IAAI,CAACR,IAAI,CAAC;EAC7B;AACF;AAEA,SAASG,cAAc"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/i18n",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "homepage": "https://github.com/easyops-cn/next-core/tree/v3/packages/i18n",
5
5
  "license": "GPL-3.0",
6
6
  "repository": {
@@ -40,14 +40,14 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@next-core/types": "^1.3.0",
43
- "@next-core/utils": "^1.5.0",
44
- "i18next": "^22.4.14",
43
+ "@next-core/utils": "^1.5.2",
44
+ "i18next": "^22.5.0",
45
45
  "i18next-browser-languagedetector": "^7.0.1",
46
- "react-i18next": "^12.2.0"
46
+ "react-i18next": "^12.3.1"
47
47
  },
48
48
  "devDependencies": {
49
- "@next-core/build-next-libs": "^1.0.4",
50
- "@next-core/test-next": "^1.0.5"
49
+ "@next-core/build-next-libs": "^1.0.5",
50
+ "@next-core/test-next": "^1.0.6"
51
51
  },
52
- "gitHead": "4befd0b5435dd8701ca18962905e0b27ff58e94f"
52
+ "gitHead": "d8ed3d57b38b9626e70cbb84e61542cc3c269556"
53
53
  }