next-intlayer 3.5.9 → 3.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/dist/cjs/index.cjs +3 -3
- package/package.json +23 -22
package/dist/cjs/index.cjs
CHANGED
|
@@ -16,8 +16,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var
|
|
20
|
-
__export(
|
|
19
|
+
var index_exports = {};
|
|
20
|
+
__export(index_exports, {
|
|
21
21
|
IntlayerClientContext: () => import_react_intlayer.IntlayerClientContext,
|
|
22
22
|
IntlayerClientProvider: () => import_client.IntlayerClientProvider,
|
|
23
23
|
generateStaticParams: () => import_generateStaticParams.generateStaticParams,
|
|
@@ -33,7 +33,7 @@ __export(src_exports, {
|
|
|
33
33
|
useLocalePageRouter: () => import_client.useLocalePageRouter,
|
|
34
34
|
useTraduction: () => import_react_intlayer.useTraduction
|
|
35
35
|
});
|
|
36
|
-
module.exports = __toCommonJS(
|
|
36
|
+
module.exports = __toCommonJS(index_exports);
|
|
37
37
|
var import_react_intlayer = require("react-intlayer");
|
|
38
38
|
var import_generateStaticParams = require('./generateStaticParams.cjs');
|
|
39
39
|
var import_client = require('./client/index.cjs');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-intlayer",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Internationalisation tool for Next.js applications. Declare your multilingual contant in the same lever than your component. Powered by TypeScript, declaration files.",
|
|
6
6
|
"keywords": [
|
|
@@ -71,39 +71,40 @@
|
|
|
71
71
|
"./package.json"
|
|
72
72
|
],
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"
|
|
75
|
-
"@intlayer/
|
|
76
|
-
"@intlayer/
|
|
77
|
-
"
|
|
78
|
-
"@intlayer/
|
|
79
|
-
"@intlayer/
|
|
80
|
-
"
|
|
74
|
+
"node-loader": "^2.1.0",
|
|
75
|
+
"@intlayer/chokidar": "3.5.11",
|
|
76
|
+
"@intlayer/config": "3.5.11",
|
|
77
|
+
"@intlayer/core": "3.5.11",
|
|
78
|
+
"@intlayer/dictionaries-entry": "3.5.11",
|
|
79
|
+
"@intlayer/webpack": "3.5.11",
|
|
80
|
+
"react-intlayer": "3.5.11"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@types/node": "^22.10.
|
|
84
|
-
"@types/react": "^18.3.
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
83
|
+
"@types/node": "^22.10.6",
|
|
84
|
+
"@types/react": "^18.3.1",
|
|
85
|
+
"@typescript-eslint/parser": "^8.20.0",
|
|
86
|
+
"concurrently": "^9.1.2",
|
|
87
|
+
"eslint": "^9.18.0",
|
|
88
|
+
"prettier": "^3.4.2",
|
|
88
89
|
"rimraf": "^6.0.1",
|
|
89
90
|
"tsc-alias": "^1.8.10",
|
|
90
91
|
"tsup": "^8.3.5",
|
|
91
|
-
"typescript": "^5.7.
|
|
92
|
+
"typescript": "^5.7.3",
|
|
92
93
|
"@utils/eslint-config": "1.0.4",
|
|
93
|
-
"@utils/ts-config": "1.0.4",
|
|
94
94
|
"@utils/ts-config-types": "1.0.4",
|
|
95
|
+
"intlayer": "3.5.11",
|
|
95
96
|
"@utils/tsup-config": "1.0.4",
|
|
96
|
-
"
|
|
97
|
+
"@utils/ts-config": "1.0.4"
|
|
97
98
|
},
|
|
98
99
|
"peerDependencies": {
|
|
99
100
|
"next": ">=14.0.0",
|
|
100
101
|
"react": ">=16.0.0",
|
|
101
|
-
"@intlayer/config": "3.5.
|
|
102
|
-
"@intlayer/
|
|
103
|
-
"
|
|
104
|
-
"intlayer": "3.5.
|
|
105
|
-
"react-intlayer": "^3.5.
|
|
106
|
-
"@intlayer/
|
|
102
|
+
"@intlayer/config": "3.5.11",
|
|
103
|
+
"@intlayer/dictionaries-entry": "3.5.11",
|
|
104
|
+
"intlayer": "3.5.11",
|
|
105
|
+
"@intlayer/core": "3.5.11",
|
|
106
|
+
"react-intlayer": "^3.5.11",
|
|
107
|
+
"@intlayer/webpack": "3.5.11"
|
|
107
108
|
},
|
|
108
109
|
"engines": {
|
|
109
110
|
"node": ">=14.18"
|