nuxt-intlayer 5.5.10 → 5.6.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 +2 -2
- package/package.json +13 -11
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
<a href="https://www.facebook.com/intlayer" target="blank"><img align="center"
|
|
34
34
|
src="https://img.shields.io/badge/facebook-4267B2.svg?style=for-the-badge&logo=facebook&logoColor=white"
|
|
35
35
|
alt="Intlayer Facebook" height="30"/></a>
|
|
36
|
-
<a href="https://www.instagram.com/
|
|
36
|
+
<a href="https://www.instagram.com/intlayer/" target="blank"><img align="center"
|
|
37
37
|
src="https://img.shields.io/badge/instagram-%23E4405F.svg?style=for-the-badge&logo=Instagram&logoColor=white"
|
|
38
38
|
alt="Intlayer Instagram" height="30"/></a>
|
|
39
39
|
<a href="https://x.com/Intlayer183096" target="blank"><img align="center"
|
|
@@ -113,7 +113,7 @@ to fill
|
|
|
113
113
|
|
|
114
114
|
Intlayer provides a lot of features to help you internationalize your Vue application.
|
|
115
115
|
|
|
116
|
-
**To learn more about these features, refer to the [Vue Internationalization (i18n) with Intlayer and Vite and Vue](https://github.com/aymericzip/intlayer/blob/main/docs/en/intlayer_with_vite+react.md) guide for Vite and Vue Application, or the [Vue Internationalization (i18n) with Intlayer and Vue (CRA)](https://intlayer.org/doc/environment/create-react-app) guide for Vue Create App.**
|
|
116
|
+
**To learn more about these features, refer to the [Vue Internationalization (i18n) with Intlayer and Vite and Vue](https://github.com/aymericzip/intlayer/blob/main/docs/docs/en/intlayer_with_vite+react.md) guide for Vite and Vue Application, or the [Vue Internationalization (i18n) with Intlayer and Vue (CRA)](https://intlayer.org/doc/environment/create-react-app) guide for Vue Create App.**
|
|
117
117
|
|
|
118
118
|
## Functions provided by `nuxt-intlayer` package
|
|
119
119
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-intlayer",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Easily internationalize i18n your Nuxt applications with type-safe multilingual content management.",
|
|
6
6
|
"keywords": [
|
|
@@ -63,10 +63,10 @@
|
|
|
63
63
|
"@nuxt/schema": "^3.17.5",
|
|
64
64
|
"tsc-alias": "^1.8.16",
|
|
65
65
|
"tsup": "^8.5.0",
|
|
66
|
-
"@intlayer/chokidar": "5.
|
|
67
|
-
"@intlayer/
|
|
68
|
-
"@intlayer/
|
|
69
|
-
"vite-intlayer": "5.
|
|
66
|
+
"@intlayer/chokidar": "5.6.0",
|
|
67
|
+
"@intlayer/config": "5.6.0",
|
|
68
|
+
"@intlayer/core": "5.6.0",
|
|
69
|
+
"vite-intlayer": "5.6.0"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@types/node": "^22.15.30",
|
|
@@ -77,16 +77,17 @@
|
|
|
77
77
|
"prettier": "^3.5.3",
|
|
78
78
|
"rimraf": "^6.0.1",
|
|
79
79
|
"typescript": "^5.8.3",
|
|
80
|
-
"
|
|
80
|
+
"vitest": "^3.2.2",
|
|
81
81
|
"@utils/ts-config": "1.0.4",
|
|
82
|
+
"@utils/eslint-config": "1.0.4",
|
|
82
83
|
"@utils/ts-config-types": "1.0.4",
|
|
83
84
|
"@utils/tsup-config": "1.0.4"
|
|
84
85
|
},
|
|
85
86
|
"peerDependencies": {
|
|
86
|
-
"@intlayer/
|
|
87
|
-
"@intlayer/
|
|
88
|
-
"vite-intlayer": "5.
|
|
89
|
-
"@intlayer/core": "5.
|
|
87
|
+
"@intlayer/config": "5.6.0",
|
|
88
|
+
"@intlayer/chokidar": "5.6.0",
|
|
89
|
+
"vite-intlayer": "5.6.0",
|
|
90
|
+
"@intlayer/core": "5.6.0"
|
|
90
91
|
},
|
|
91
92
|
"engines": {
|
|
92
93
|
"node": ">=14.18"
|
|
@@ -105,7 +106,8 @@
|
|
|
105
106
|
"prettier": "prettier . --check",
|
|
106
107
|
"prettier:fix": "prettier . --write",
|
|
107
108
|
"reset": "pnpm clean & pnpm build",
|
|
108
|
-
"test": "",
|
|
109
|
+
"test": "vitest run",
|
|
110
|
+
"test:watch": "vitest",
|
|
109
111
|
"typecheck": "tsup --project ./tsconfig.json --noEmit"
|
|
110
112
|
}
|
|
111
113
|
}
|