express-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 +4 -4
  2. package/package.json +14 -12
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"
@@ -223,9 +223,9 @@ app.listen(3000, () => console.log(`Listening on port 3000`));
223
223
 
224
224
  `express-intlayer` is fully compatible with:
225
225
 
226
- - [`react-intlayer`](https://github.com/aymericzip/intlayer/blob/main/docs/en/packages/react-intlayer/index.md) for React applications
227
- - [`next-intlayer`](https://github.com/aymericzip/intlayer/blob/main/docs/en/packages/next-intlayer/index.md) for Next.js applications
228
- - [`vite-intlayer`](https://github.com/aymericzip/intlayer/blob/main/docs/en/packages/vite-intlayer/index.md) for Vite applications
226
+ - [`react-intlayer`](https://github.com/aymericzip/intlayer/blob/main/docs/docs/en/packages/react-intlayer/index.md) for React applications
227
+ - [`next-intlayer`](https://github.com/aymericzip/intlayer/blob/main/docs/docs/en/packages/next-intlayer/index.md) for Next.js applications
228
+ - [`vite-intlayer`](https://github.com/aymericzip/intlayer/blob/main/docs/docs/en/packages/vite-intlayer/index.md) for Vite applications
229
229
 
230
230
  It also works seamlessly with any internationalization solution across various environments, including browsers and API requests. You can customize the middleware to detect locale through headers or cookies:
231
231
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "express-intlayer",
3
- "version": "5.5.10",
3
+ "version": "5.6.0",
4
4
  "private": false,
5
5
  "description": "Manage internationalization i18n in a simple way for express application.",
6
6
  "keywords": [
@@ -62,10 +62,10 @@
62
62
  ],
63
63
  "dependencies": {
64
64
  "cls-hooked": "^4.2.2",
65
- "@intlayer/config": "5.5.10",
66
- "@intlayer/core": "5.5.10",
67
- "intlayer": "5.5.10",
68
- "@intlayer/chokidar": "5.5.10"
65
+ "@intlayer/chokidar": "5.6.0",
66
+ "@intlayer/config": "5.6.0",
67
+ "@intlayer/core": "5.6.0",
68
+ "intlayer": "5.6.0"
69
69
  },
70
70
  "devDependencies": {
71
71
  "@changesets/changelog-github": "0.5.1",
@@ -82,16 +82,17 @@
82
82
  "tsc-alias": "^1.8.16",
83
83
  "tsup": "^8.5.0",
84
84
  "typescript": "^5.8.3",
85
+ "vitest": "^3.2.2",
85
86
  "@utils/eslint-config": "1.0.4",
86
- "@utils/tsup-config": "1.0.4",
87
+ "@utils/ts-config": "1.0.4",
87
88
  "@utils/ts-config-types": "1.0.4",
88
- "@utils/ts-config": "1.0.4"
89
+ "@utils/tsup-config": "1.0.4"
89
90
  },
90
91
  "peerDependencies": {
91
- "@intlayer/chokidar": "5.5.10",
92
- "@intlayer/config": "5.5.10",
93
- "@intlayer/core": "5.5.10",
94
- "intlayer": "5.5.10"
92
+ "@intlayer/core": "5.6.0",
93
+ "@intlayer/chokidar": "5.6.0",
94
+ "@intlayer/config": "5.6.0",
95
+ "intlayer": "5.6.0"
95
96
  },
96
97
  "engines": {
97
98
  "node": ">=14.18"
@@ -110,7 +111,8 @@
110
111
  "prettier": "prettier . --check",
111
112
  "prettier:fix": "prettier . --write",
112
113
  "reset": "pnpm clean & pnpm build",
113
- "test": "",
114
+ "test": "vitest run",
115
+ "test:watch": "vitest",
114
116
  "typecheck": "tsup --project ./tsconfig.json --noEmit"
115
117
  }
116
118
  }