@diplodoc/cli 5.3.2 → 5.4.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.
package/README.md CHANGED
@@ -14,6 +14,10 @@ Yfm-docs lets you build a full-fledged documentation project: with navigation, i
14
14
 
15
15
  [ydocs.tech](https://diplodoc.com/docs/en/tools/docs)
16
16
 
17
+ ## Requirements
18
+
19
+ Node 22+
20
+
17
21
  ## Usage
18
22
 
19
23
  ```bash
package/README.ru.md CHANGED
@@ -14,6 +14,10 @@ Yfm-docs позволяет собрать полноценный докумен
14
14
 
15
15
  [ydocs.tech](https://diplodoc.com/docs/ru/tools/docs)
16
16
 
17
+ ## Требования
18
+
19
+ Node 22+
20
+
17
21
  ## Использование
18
22
 
19
23
  ```bash
package/build/index.js CHANGED
@@ -351592,7 +351592,7 @@ var EntryService = class {
351592
351592
  async load(path2) {
351593
351593
  this.run.meta.add(path2, {
351594
351594
  metadata: {
351595
- generator: `Diplodoc Platform v${"5.3.2"}`
351595
+ generator: `Diplodoc Platform v${"5.4.0"}`
351596
351596
  }
351597
351597
  });
351598
351598
  const type = (0, import_node_path6.extname)(path2).slice(1);
@@ -360608,7 +360608,7 @@ var Program = class extends (_a9 = import_program20.BaseProgram) {
360608
360608
  super(...arguments);
360609
360609
  this.name = "Program";
360610
360610
  this.command = new import_config59.Command(NAME).helpOption(true).allowUnknownOption(false).version(
360611
- false ? "" : "5.3.2",
360611
+ false ? "" : "5.4.0",
360612
360612
  "--version",
360613
360613
  "Output the version number"
360614
360614
  ).usage(USAGE);
@@ -360775,7 +360775,7 @@ if (import_node_worker_threads4.isMainThread && require.main === module) {
360775
360775
  (async () => {
360776
360776
  console.time(MAIN_TIMER_ID);
360777
360777
  if (process.env.NODE_ENV !== "test") {
360778
- console.log(`Using v${"5.3.2"} version`);
360778
+ console.log(`Using v${"5.4.0"} version`);
360779
360779
  }
360780
360780
  const report = await run(process.argv);
360781
360781
  if (process.env.NODE_ENV !== "test") {
package/build/index.mjs CHANGED
@@ -351585,7 +351585,7 @@ var EntryService = class {
351585
351585
  async load(path2) {
351586
351586
  this.run.meta.add(path2, {
351587
351587
  metadata: {
351588
- generator: `Diplodoc Platform v${"5.3.2"}`
351588
+ generator: `Diplodoc Platform v${"5.4.0"}`
351589
351589
  }
351590
351590
  });
351591
351591
  const type = extname2(path2).slice(1);
@@ -360621,7 +360621,7 @@ var Program = class extends (_a9 = BaseProgram6) {
360621
360621
  super(...arguments);
360622
360622
  this.name = "Program";
360623
360623
  this.command = new Command7(NAME).helpOption(true).allowUnknownOption(false).version(
360624
- false ? "" : "5.3.2",
360624
+ false ? "" : "5.4.0",
360625
360625
  "--version",
360626
360626
  "Output the version number"
360627
360627
  ).usage(USAGE);
@@ -360788,7 +360788,7 @@ if (isMainThread4 && __require.main === module) {
360788
360788
  (async () => {
360789
360789
  console.time(MAIN_TIMER_ID);
360790
360790
  if (process.env.NODE_ENV !== "test") {
360791
- console.log(`Using v${"5.3.2"} version`);
360791
+ console.log(`Using v${"5.4.0"} version`);
360792
360792
  }
360793
360793
  const report = await run(process.argv);
360794
360794
  if (process.env.NODE_ENV !== "test") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diplodoc/cli",
3
- "version": "5.3.2",
3
+ "version": "5.4.0",
4
4
  "description": "Make documentation using yfm-docs in Markdown and HTML formats",
5
5
  "keywords": [
6
6
  "markdown",
@@ -138,9 +138,6 @@
138
138
  "walk-sync": "3.0.0"
139
139
  },
140
140
  "engines": {
141
- "node": ">=18.*"
142
- },
143
- "overrides": {
144
- "undici": "6.21.3"
141
+ "node": ">=22.*"
145
142
  }
146
143
  }