lynx-intlayer 5.5.10 → 5.5.11
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 +2 -2
- package/package.json +10 -8
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ Internationalizing your Lynx application is essential for serving a global audie
|
|
|
61
61
|
|
|
62
62
|
## Configuration
|
|
63
63
|
|
|
64
|
-
The `lynx-intlayer` package works seamlessly with the [`react-intlayer` package](https://github.com/aymericzip/intlayer/blob/main/docs/en/packages/react-intlayer/index.md), and the [`intlayer` package](https://github.com/aymericzip/intlayer/blob/main/docs/en/packages/intlayer/index.md). Have a look at the relevant documentation for more information.
|
|
64
|
+
The `lynx-intlayer` package works seamlessly with the [`react-intlayer` package](https://github.com/aymericzip/intlayer/blob/main/docs/docs/en/packages/react-intlayer/index.md), and the [`intlayer` package](https://github.com/aymericzip/intlayer/blob/main/docs/docs/en/packages/intlayer/index.md). Have a look at the relevant documentation for more information.
|
|
65
65
|
|
|
66
66
|
## Installation
|
|
67
67
|
|
|
@@ -100,7 +100,7 @@ export default defineConfig({
|
|
|
100
100
|
|
|
101
101
|
Intlayer provides a lot of features to help you internationalize your Vite application.
|
|
102
102
|
|
|
103
|
-
**To learn more about these features, refer to the [React Internationalization (i18n) with Intlayer and Lynx](https://github.com/aymericzip/intlayer/blob/main/docs/en/intlayer_with_lynx+react.md) guide for Lynx Application.**
|
|
103
|
+
**To learn more about these features, refer to the [React Internationalization (i18n) with Intlayer and Lynx](https://github.com/aymericzip/intlayer/blob/main/docs/docs/en/intlayer_with_lynx+react.md) guide for Lynx Application.**
|
|
104
104
|
|
|
105
105
|
## Read about Intlayer
|
|
106
106
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lynx-intlayer",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A Lynx plugin for seamless internationalization (i18n) and localization (l10n) of your mobile app.",
|
|
6
6
|
"keywords": [
|
|
@@ -63,9 +63,9 @@
|
|
|
63
63
|
"./package.json"
|
|
64
64
|
],
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@intlayer/
|
|
67
|
-
"@intlayer/
|
|
68
|
-
"@intlayer/
|
|
66
|
+
"@intlayer/core": "5.5.11",
|
|
67
|
+
"@intlayer/chokidar": "5.5.11",
|
|
68
|
+
"@intlayer/config": "5.5.11"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@rsbuild/core": "^1.2.16",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"tsc-alias": "^1.8.16",
|
|
81
81
|
"tsup": "^8.5.0",
|
|
82
82
|
"typescript": "^5.8.3",
|
|
83
|
+
"vitest": "^3.2.2",
|
|
83
84
|
"@utils/eslint-config": "1.0.4",
|
|
84
85
|
"@utils/ts-config": "1.0.4",
|
|
85
86
|
"@utils/ts-config-types": "1.0.4",
|
|
@@ -88,9 +89,9 @@
|
|
|
88
89
|
"peerDependencies": {
|
|
89
90
|
"@lynx-js/rspeedy": "^0.8.2",
|
|
90
91
|
"@rsbuild/core": "^1.2.16",
|
|
91
|
-
"@intlayer/chokidar": "5.5.
|
|
92
|
-
"@intlayer/config": "5.5.
|
|
93
|
-
"@intlayer/core": "5.5.
|
|
92
|
+
"@intlayer/chokidar": "5.5.11",
|
|
93
|
+
"@intlayer/config": "5.5.11",
|
|
94
|
+
"@intlayer/core": "5.5.11"
|
|
94
95
|
},
|
|
95
96
|
"engines": {
|
|
96
97
|
"node": ">=14.18"
|
|
@@ -109,7 +110,8 @@
|
|
|
109
110
|
"prettier": "prettier . --check",
|
|
110
111
|
"prettier:fix": "prettier . --write",
|
|
111
112
|
"reset": "pnpm clean & pnpm build",
|
|
112
|
-
"test": "",
|
|
113
|
+
"test": "vitest run",
|
|
114
|
+
"test:watch": "vitest",
|
|
113
115
|
"typecheck": "tsup --project ./tsconfig.json --noEmit"
|
|
114
116
|
}
|
|
115
117
|
}
|