@diplodoc/cli 4.57.16 → 4.57.17

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/build/index.js CHANGED
@@ -251518,7 +251518,7 @@ var Build = class extends (_a2 = import_program11.BaseProgram, _process_dec = [i
251518
251518
  this.run.logger.proc(entry);
251519
251519
  this.run.meta.add(entry, {
251520
251520
  metadata: {
251521
- generator: `Diplodoc Platform v${"4.57.16"}`
251521
+ generator: `Diplodoc Platform v${"4.57.17"}`
251522
251522
  }
251523
251523
  });
251524
251524
  const info2 = await this.process(entry);
@@ -257835,7 +257835,7 @@ var Program = class extends (_a8 = import_program17.BaseProgram) {
257835
257835
  super(...arguments);
257836
257836
  this.name = "Program";
257837
257837
  this.command = new import_config54.Command(NAME).helpOption(true).allowUnknownOption(false).version(
257838
- false ? "" : "4.57.16",
257838
+ false ? "" : "4.57.17",
257839
257839
  "--version",
257840
257840
  "Output the version number"
257841
257841
  ).usage(USAGE);
@@ -257862,7 +257862,7 @@ if (require.main === module) {
257862
257862
  (async () => {
257863
257863
  console.time(MAIN_TIMER_ID);
257864
257864
  if (process.env.NODE_ENV !== "test") {
257865
- console.log(`Using v${"4.57.16"} version`);
257865
+ console.log(`Using v${"4.57.17"} version`);
257866
257866
  }
257867
257867
  let exitCode = 0;
257868
257868
  try {
package/build/index.mjs CHANGED
@@ -251511,7 +251511,7 @@ var Build = class extends (_a2 = BaseProgram, _process_dec = [bounded3], _a2) {
251511
251511
  this.run.logger.proc(entry);
251512
251512
  this.run.meta.add(entry, {
251513
251513
  metadata: {
251514
- generator: `Diplodoc Platform v${"4.57.16"}`
251514
+ generator: `Diplodoc Platform v${"4.57.17"}`
251515
251515
  }
251516
251516
  });
251517
251517
  const info2 = await this.process(entry);
@@ -257848,7 +257848,7 @@ var Program = class extends (_a8 = BaseProgram6) {
257848
257848
  super(...arguments);
257849
257849
  this.name = "Program";
257850
257850
  this.command = new Command7(NAME).helpOption(true).allowUnknownOption(false).version(
257851
- false ? "" : "4.57.16",
257851
+ false ? "" : "4.57.17",
257852
257852
  "--version",
257853
257853
  "Output the version number"
257854
257854
  ).usage(USAGE);
@@ -257875,7 +257875,7 @@ if (__require.main === module) {
257875
257875
  (async () => {
257876
257876
  console.time(MAIN_TIMER_ID);
257877
257877
  if (process.env.NODE_ENV !== "test") {
257878
- console.log(`Using v${"4.57.16"} version`);
257878
+ console.log(`Using v${"4.57.17"} version`);
257879
257879
  }
257880
257880
  let exitCode = 0;
257881
257881
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diplodoc/cli",
3
- "version": "4.57.16",
3
+ "version": "4.57.17",
4
4
  "description": "Make documentation using yfm-docs in Markdown and HTML formats",
5
5
  "keywords": [
6
6
  "markdown",
@@ -14,8 +14,10 @@ properties:
14
14
  properties:
15
15
  title:
16
16
  $ref: '#/definitions/TextItems'
17
+ translate: md
17
18
  description:
18
19
  $ref: '#/definitions/TextItems'
20
+ translate: md
19
21
  noIndex:
20
22
  type: boolean
21
23
  additionalProperties: false
@@ -50,6 +52,7 @@ definitions:
50
52
  oneOf:
51
53
  - type: string
52
54
  - type: array
55
+ translate: md
53
56
  items:
54
57
  type: string
55
58
  translate: md
@@ -0,0 +1,30 @@
1
+ definitions:
2
+ TextItems:
3
+ oneOf:
4
+ - type: string
5
+ - type: array
6
+ translate: md
7
+ items:
8
+ type: string
9
+ translate: md
10
+ children:
11
+ selectCases:
12
+ card-layout-block:
13
+ properties:
14
+ title:
15
+ oneOf:
16
+ - type: string
17
+ optionName: text
18
+ translate: md
19
+ properties:
20
+ meta:
21
+ type: object
22
+ properties:
23
+ title:
24
+ $ref: '#/definitions/TextItems'
25
+ translate: md
26
+ description:
27
+ $ref: '#/definitions/TextItems'
28
+ translate: md
29
+ noIndex:
30
+ type: boolean