lynx-intlayer 9.4.3 → 9.5.0
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.
package/README.md
CHANGED
|
@@ -69,8 +69,6 @@ With **per-locale content files**, **TypeScript autocompletion**, **tree-shakabl
|
|
|
69
69
|
| <img src="https://github.com/aymericzip/intlayer/blob/main/docs/assets/interoperability.png?raw=true" alt="Feature" width="700"> | **Interoperability**<br><br>Allow interoperability with react-i18next, next-i18next, next-intl, react-intl, vue-i18n. <br><br> - [Intlayer and react-intl](https://intlayer.org/blog/intlayer-with-react-intl) <br> - [Intlayer and next-intl](https://intlayer.org/blog/intlayer-with-next-intl) <br> - [Intlayer and next-i18next](https://intlayer.org/blog/intlayer-with-next-i18next) <br> - [Intlayer and vue-i18n](https://intlayer.org/blog/intlayer-with-vue-i18n) <br> - [Intlayer compat adapters](https://intlayer.org/doc/compatibility) |
|
|
70
70
|
| <img src="https://github.com/aymericzip/intlayer/blob/main/docs/assets/benchmark.png?raw=true" alt="Feature" width="700"> | **Performances & Benchmark**<br><br>Uses advanced tree-shaking and dynamic loading to boost performances and keep the solution as light as possible. <br><br> - [Performances & Benchmark](https://intlayer.org/doc/benchmark) |
|
|
71
71
|
|
|
72
|
-
---
|
|
73
|
-
|
|
74
72
|
## 📦 Installation
|
|
75
73
|
|
|
76
74
|
Start your journey with Intlayer today and experience a smoother, more powerful approach to internationalization.
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
* (`addEventListener`, `removeEventListener`, `postMessage`)
|
|
8
8
|
* to ensure compatibility with libraries that expect a browser-like environment.
|
|
9
9
|
*/
|
|
10
|
-
declare const intlayerPolyfill: () => void;
|
|
10
|
+
export declare const intlayerPolyfill: () => void;
|
|
11
11
|
//#endregion
|
|
12
|
-
export { intlayerPolyfill };
|
|
13
12
|
//# sourceMappingURL=intlayerPolyfill.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"intlayerPolyfill.d.ts","names":[],"sources":["../../src/intlayerPolyfill.ts"],"mappings":";;;;;;;;;
|
|
1
|
+
{"version":3,"file":"intlayerPolyfill.d.ts","names":[],"sources":["../../src/intlayerPolyfill.ts"],"mappings":";;;;;;;;;qBAQa"}
|
|
@@ -20,7 +20,6 @@ import { RsbuildPlugin } from "@rsbuild/core";
|
|
|
20
20
|
* // ...other configuration
|
|
21
21
|
* })
|
|
22
22
|
*/
|
|
23
|
-
declare const pluginIntlayerLynx: () => RsbuildPlugin;
|
|
23
|
+
export declare const pluginIntlayerLynx: () => RsbuildPlugin;
|
|
24
24
|
//#endregion
|
|
25
|
-
export { pluginIntlayerLynx };
|
|
26
25
|
//# sourceMappingURL=pluginIntlayerLynx.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pluginIntlayerLynx.d.ts","names":[],"sources":["../../../src/plugin/pluginIntlayerLynx.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"pluginIntlayerLynx.d.ts","names":[],"sources":["../../../src/plugin/pluginIntlayerLynx.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;qBAuCa,0BAAyB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lynx-intlayer",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.5.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A Lynx plugin for seamless internationalization (i18n) and localization (l10n) of your mobile app.",
|
|
6
6
|
"keywords": [
|
|
@@ -86,22 +86,22 @@
|
|
|
86
86
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@intlayer/config": "9.
|
|
90
|
-
"@intlayer/core": "9.
|
|
91
|
-
"@intlayer/dictionaries-entry": "9.
|
|
92
|
-
"@intlayer/engine": "9.
|
|
93
|
-
"@intlayer/types": "9.
|
|
89
|
+
"@intlayer/config": "9.5.0",
|
|
90
|
+
"@intlayer/core": "9.5.0",
|
|
91
|
+
"@intlayer/dictionaries-entry": "9.5.0",
|
|
92
|
+
"@intlayer/engine": "9.5.0",
|
|
93
|
+
"@intlayer/types": "9.5.0"
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
96
|
"@rsbuild/core": "2.1.10",
|
|
97
|
-
"@types/node": "26.
|
|
97
|
+
"@types/node": "26.5.0",
|
|
98
98
|
"@utils/ts-config": "1.0.4",
|
|
99
99
|
"@utils/ts-config-types": "1.0.4",
|
|
100
100
|
"@utils/tsdown-config": "1.0.4",
|
|
101
101
|
"rimraf": "6.1.3",
|
|
102
|
-
"tsdown": "0.
|
|
102
|
+
"tsdown": "0.23.0",
|
|
103
103
|
"typescript": "7.0.2",
|
|
104
|
-
"vitest": "
|
|
104
|
+
"vitest": "5.0.0"
|
|
105
105
|
},
|
|
106
106
|
"peerDependencies": {
|
|
107
107
|
"@lynx-js/rspeedy": ">=0.5.0",
|