intlayer 3.5.3 → 3.5.4
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 +4 -4
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
```tsx
|
|
37
37
|
// ./ClientComponent/index.content.ts
|
|
38
38
|
|
|
39
|
-
import { DeclarationContent, t } from "intlayer";
|
|
39
|
+
import { type DeclarationContent, t } from "intlayer";
|
|
40
40
|
|
|
41
41
|
const clientComponentContent = {
|
|
42
42
|
key: "client-component",
|
|
@@ -75,12 +75,12 @@ export const ClientComponent = () => {
|
|
|
75
75
|
|
|
76
76
|
`intlayer` package intend to declare your content in a structured way, using JavaScript.
|
|
77
77
|
|
|
78
|
-
To build dictionaries from this declaration, you can use [intlayer-cli](https://github.com/aymericzip/intlayer/blob/main/packages/intlayer-cli/
|
|
79
|
-
And to interpret intlayer dictionaries you can interpreters, such as [react-intlayer](https://github.com/aymericzip/intlayer/blob/main/packages/react-intlayer/
|
|
78
|
+
To build dictionaries from this declaration, you can use [intlayer-cli](https://github.com/aymericzip/intlayer/blob/main/packages/intlayer-cli/readme.md).
|
|
79
|
+
And to interpret intlayer dictionaries you can interpreters, such as [react-intlayer](https://github.com/aymericzip/intlayer/blob/main/packages/react-intlayer/readme.mdor [next-intlayer](https://github.com/aymericzip/intlayer/blob/main/packages/next-intlayer/readme.md.md
|
|
80
80
|
|
|
81
81
|
## Getting Started with Intlayer
|
|
82
82
|
|
|
83
|
-
[See how to use intlayer with NextJS](https://github.com/aymericzip/intlayer/blob/main/
|
|
83
|
+
[See how to use intlayer with NextJS](https://github.com/aymericzip/intlayer/blob/main/readme.md
|
|
84
84
|
|
|
85
85
|
### Install Package
|
|
86
86
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intlayer",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Manage internationalization in a simple way, through TypeScript, declaration file, declare your multilingual every where in your code.",
|
|
6
6
|
"keywords": [
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"./package.json"
|
|
59
59
|
],
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@intlayer/
|
|
62
|
-
"@intlayer/
|
|
63
|
-
"@intlayer/core": "^3.5.
|
|
61
|
+
"@intlayer/config": "^3.5.4",
|
|
62
|
+
"@intlayer/cli": "^3.5.4",
|
|
63
|
+
"@intlayer/core": "^3.5.4"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@changesets/changelog-github": "0.5.0",
|
|
@@ -73,15 +73,15 @@
|
|
|
73
73
|
"tsc-alias": "^1.8.10",
|
|
74
74
|
"tsup": "^8.3.5",
|
|
75
75
|
"typescript": "^5.7.2",
|
|
76
|
-
"@utils/eslint-config": "^1.0.4",
|
|
77
|
-
"@utils/ts-config": "^1.0.4",
|
|
78
76
|
"@utils/ts-config-types": "^1.0.4",
|
|
77
|
+
"@utils/ts-config": "^1.0.4",
|
|
78
|
+
"@utils/eslint-config": "^1.0.4",
|
|
79
79
|
"@utils/tsup-config": "^1.0.4"
|
|
80
80
|
},
|
|
81
81
|
"peerDependencies": {
|
|
82
|
-
"@intlayer/
|
|
83
|
-
"@intlayer/core": "^3.5.
|
|
84
|
-
"@intlayer/
|
|
82
|
+
"@intlayer/config": "^3.5.4",
|
|
83
|
+
"@intlayer/core": "^3.5.4",
|
|
84
|
+
"@intlayer/cli": "^3.5.4"
|
|
85
85
|
},
|
|
86
86
|
"engines": {
|
|
87
87
|
"node": ">=14.18"
|