@intlayer/docs 6.0.0-canary.3 → 6.0.1
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/docs/en/configuration.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
createdAt: 2024-08-13
|
|
3
|
-
updatedAt: 2025-09-
|
|
3
|
+
updatedAt: 2025-09-21
|
|
4
4
|
title: Configuration
|
|
5
5
|
description: Learn how to configure Intlayer for your application. Understand the various settings and options available to customize Intlayer to your needs.
|
|
6
6
|
keywords:
|
|
@@ -379,11 +379,6 @@ Settings related to content handling within the application, including directory
|
|
|
379
379
|
- _Example_: `'/path/to/project'`
|
|
380
380
|
- _Note_: This is used to resolve all Intlayer-related directories.
|
|
381
381
|
|
|
382
|
-
- **dictionaryOutput**:
|
|
383
|
-
- _Type_: `string[]`
|
|
384
|
-
- _Default_: `['intlayer']`
|
|
385
|
-
- _Description_: The type of dictionary output to use, e.g., `'intlayer'` or `'i18next'`.
|
|
386
|
-
|
|
387
382
|
- **contentDir**:
|
|
388
383
|
- _Type_: `string[]`
|
|
389
384
|
- _Default_: `['.']`
|
|
@@ -414,13 +409,6 @@ Settings related to content handling within the application, including directory
|
|
|
414
409
|
- _Description_: The directory for storing localization dictionaries.
|
|
415
410
|
- _Example_: `'translations'`
|
|
416
411
|
|
|
417
|
-
- **i18nextResourcesDir**:
|
|
418
|
-
- _Type_: `string`
|
|
419
|
-
- _Default_: `'i18next_dictionary'`
|
|
420
|
-
- _Description_: The directory for storing i18n dictionaries.
|
|
421
|
-
- _Example_: `'translations'`
|
|
422
|
-
- _Note_: Ensure this directory is configured for the i18next output type.
|
|
423
|
-
|
|
424
412
|
- **typesDir**:
|
|
425
413
|
- _Type_: `string`
|
|
426
414
|
- _Default_: `'types'`
|
|
@@ -567,6 +555,7 @@ Build options apply to the `@intlayer/babel` and `@intlayer/swc` plugins.
|
|
|
567
555
|
|
|
568
556
|
| Version | Date | Changes |
|
|
569
557
|
| ------- | ---------- | --------------------------------------------------------------------------------------- |
|
|
558
|
+
| 6.0.0 | 2025-09-21 | Remove `dictionaryOutput` field and `i18nextResourcesDir` field |
|
|
570
559
|
| 6.0.0 | 2025-09-16 | Add `live` import mode |
|
|
571
560
|
| 6.0.0 | 2025-09-04 | Replace `hotReload` field by `liveSync` and add `liveSyncPort` and `liveSyncURL` fields |
|
|
572
561
|
| 5.6.1 | 2025-07-25 | Replace `activateDynamicImport` with `importMode` option |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
createdAt: 2025-08-23
|
|
3
|
-
updatedAt: 2025-
|
|
3
|
+
updatedAt: 2025-09-21
|
|
4
4
|
title: Intlayer Visual Editor | Edit your content using a visual editor
|
|
5
5
|
description: Discover how to use the Intlayer Editor to manage your multilingual website. Follow the steps in this online documentation to set up your project in a few minutes.
|
|
6
6
|
keywords:
|
|
@@ -208,6 +208,8 @@ module.exports = config;
|
|
|
208
208
|
|
|
209
209
|
> **Note that you should run your application in parallel.** The application URL should match the one you set in the editor configuration (`applicationURL`).
|
|
210
210
|
|
|
211
|
+
> **Note the command is reexported by the `intlayer` package. You can use `npx intlayer editor start` instead.**
|
|
212
|
+
|
|
211
213
|
2. Then, open the URL provided. By default `http://localhost:8000`.
|
|
212
214
|
|
|
213
215
|
You can view each field indexed by Intlayer by hovering over your content with your cursor.
|
|
@@ -264,6 +266,7 @@ If you encounter any issues with the visual editor, check the following:
|
|
|
264
266
|
|
|
265
267
|
## Doc History
|
|
266
268
|
|
|
267
|
-
| Version | Date | Changes
|
|
268
|
-
| ------- | ---------- |
|
|
269
|
-
|
|
|
269
|
+
| Version | Date | Changes |
|
|
270
|
+
| ------- | ---------- | ---------------------- |
|
|
271
|
+
| 6.0.0 | 2025-09-21 | Add reexported command |
|
|
272
|
+
| 5.5.10 | 2025-06-29 | Init history |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/docs",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Intlayer documentation",
|
|
6
6
|
"keywords": [
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"legal"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"
|
|
52
|
-
"intlayer": "6.0.
|
|
51
|
+
"intlayer": "6.0.1",
|
|
52
|
+
"@intlayer/config": "6.0.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/node": "^24.2.1",
|
|
@@ -63,16 +63,16 @@
|
|
|
63
63
|
"tsx": "^4.19.4",
|
|
64
64
|
"typescript": "^5.9.2",
|
|
65
65
|
"vitest": "^3.2.4",
|
|
66
|
-
"@intlayer/
|
|
67
|
-
"@intlayer/cli": "6.0.0-canary.3",
|
|
66
|
+
"@intlayer/cli": "6.0.1",
|
|
68
67
|
"@utils/ts-config": "1.0.4",
|
|
69
|
-
"@
|
|
70
|
-
"@utils/ts-config-types": "1.0.4"
|
|
68
|
+
"@intlayer/api": "6.0.1",
|
|
69
|
+
"@utils/ts-config-types": "1.0.4",
|
|
70
|
+
"@utils/tsup-config": "1.0.4"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
|
-
"@intlayer/
|
|
74
|
-
"@intlayer/
|
|
75
|
-
"@intlayer/config": "6.0.
|
|
73
|
+
"@intlayer/api": "6.0.1",
|
|
74
|
+
"@intlayer/cli": "6.0.1",
|
|
75
|
+
"@intlayer/config": "6.0.1"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
78
|
"node": ">=14.18"
|