vite-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.
Files changed (2) hide show
  1. package/README.md +2 -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/intlayer_org/" target="blank"><img align="center"
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"
@@ -66,7 +66,7 @@ Internationalizing your Vite application is essential for serving a global audie
66
66
 
67
67
  ## Configuration
68
68
 
69
- The `vite-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.
69
+ The `vite-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.
70
70
 
71
71
  ## Installation
72
72
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-intlayer",
3
- "version": "5.5.10",
3
+ "version": "5.6.0",
4
4
  "private": false,
5
5
  "description": "A Vite plugin for seamless internationalization (i18n), providing locale detection, redirection, and environment-based configuration",
6
6
  "keywords": [
@@ -58,10 +58,10 @@
58
58
  "./package.json"
59
59
  ],
60
60
  "dependencies": {
61
- "@intlayer/babel": "5.5.10",
62
- "@intlayer/chokidar": "5.5.10",
63
- "@intlayer/config": "5.5.10",
64
- "@intlayer/core": "5.5.10"
61
+ "@intlayer/chokidar": "5.6.0",
62
+ "@intlayer/core": "5.6.0",
63
+ "@intlayer/config": "5.6.0",
64
+ "@intlayer/babel": "5.6.0"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@types/node": "^22.15.30",
@@ -73,16 +73,17 @@
73
73
  "tsc-alias": "^1.8.16",
74
74
  "tsup": "^8.5.0",
75
75
  "typescript": "^5.8.3",
76
+ "vitest": "^3.2.2",
76
77
  "@utils/eslint-config": "1.0.4",
77
78
  "@utils/ts-config": "1.0.4",
78
- "@utils/ts-config-types": "1.0.4",
79
- "@utils/tsup-config": "1.0.4"
79
+ "@utils/tsup-config": "1.0.4",
80
+ "@utils/ts-config-types": "1.0.4"
80
81
  },
81
82
  "peerDependencies": {
82
83
  "vite": ">=4.0.0",
83
- "@intlayer/chokidar": "5.5.10",
84
- "@intlayer/config": "5.5.10",
85
- "@intlayer/core": "5.5.10"
84
+ "@intlayer/chokidar": "5.6.0",
85
+ "@intlayer/config": "5.6.0",
86
+ "@intlayer/core": "5.6.0"
86
87
  },
87
88
  "engines": {
88
89
  "node": ">=14.18"
@@ -101,7 +102,8 @@
101
102
  "prettier": "prettier . --check",
102
103
  "prettier:fix": "prettier . --write",
103
104
  "reset": "pnpm clean & pnpm build",
104
- "test": "",
105
+ "test": "vitest run",
106
+ "test:watch": "vitest",
105
107
  "typecheck": "tsup --project ./tsconfig.json --noEmit"
106
108
  }
107
109
  }