intlayer 4.1.4 → 4.1.5
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 +11 -12
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -134,18 +134,17 @@ A typical output might look like:
|
|
|
134
134
|
|
|
135
135
|
```bash
|
|
136
136
|
.
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
│
|
|
140
|
-
│
|
|
141
|
-
|
|
142
|
-
│
|
|
143
|
-
│
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
└──
|
|
148
|
-
└── intlayer.d.ts # Contain the auto-generated type definitions of Intlayer
|
|
137
|
+
└── .intlayer
|
|
138
|
+
├── dictionary # Contain the dictionary of your content
|
|
139
|
+
│ ├── client-component.json
|
|
140
|
+
│ └── server-component.json
|
|
141
|
+
├── main # Contain the entry point of your dictionary to be used in your application
|
|
142
|
+
│ ├── dictionary.cjs
|
|
143
|
+
│ └── dictionary.mjs
|
|
144
|
+
└── types # Contain the auto-generated type definitions of your dictionary
|
|
145
|
+
├── intlayer.d.ts # Contain the auto-generated type definitions of Intlayer
|
|
146
|
+
├── client-component.d.ts
|
|
147
|
+
└── server-component.d.ts
|
|
149
148
|
```
|
|
150
149
|
|
|
151
150
|
### Build i18next resources
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intlayer",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Manage internationalization i18n in a simple way, through TypeScript, declaration file, declare your multilingual content 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": "^4.1.
|
|
61
|
+
"@intlayer/cli": "4.1.5",
|
|
62
|
+
"@intlayer/config": "4.1.5",
|
|
63
|
+
"@intlayer/core": "^4.1.5"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@changesets/changelog-github": "0.5.0",
|
|
@@ -74,15 +74,15 @@
|
|
|
74
74
|
"tsc-alias": "^1.8.10",
|
|
75
75
|
"tsup": "^8.3.5",
|
|
76
76
|
"typescript": "^5.7.3",
|
|
77
|
-
"@utils/ts-config": "1.0.4",
|
|
78
|
-
"@utils/tsup-config": "1.0.4",
|
|
79
77
|
"@utils/eslint-config": "1.0.4",
|
|
80
|
-
"@utils/ts-config
|
|
78
|
+
"@utils/ts-config": "1.0.4",
|
|
79
|
+
"@utils/ts-config-types": "1.0.4",
|
|
80
|
+
"@utils/tsup-config": "1.0.4"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@intlayer/cli": "4.1.
|
|
84
|
-
"@intlayer/config": "4.1.
|
|
85
|
-
"@intlayer/core": "^4.1.
|
|
83
|
+
"@intlayer/cli": "4.1.5",
|
|
84
|
+
"@intlayer/config": "4.1.5",
|
|
85
|
+
"@intlayer/core": "^4.1.5"
|
|
86
86
|
},
|
|
87
87
|
"engines": {
|
|
88
88
|
"node": ">=14.18"
|