@antora/cli 3.2.0-alpha.4 → 3.2.0-alpha.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.
Files changed (2) hide show
  1. package/lib/cli.js +3 -3
  2. package/package.json +7 -7
package/lib/cli.js CHANGED
@@ -1,9 +1,9 @@
1
1
  'use strict'
2
2
 
3
3
  const buildPlaybook = require('@antora/playbook-builder')
4
- const cli = require('./commander')
4
+ const { program: cli } = require('./commander')
5
5
  const convict = require('@antora/playbook-builder/lib/solitary-convict') // drop lib segment in Antora 4
6
- const ospath = require('path')
6
+ const ospath = require('node:path')
7
7
  const userRequire = require('@antora/user-require-helper')
8
8
 
9
9
  const { version: VERSION } = require('../package.json')
@@ -90,7 +90,7 @@ cli
90
90
  '-v, --version',
91
91
  'Output the version of the CLI and default site generator.'
92
92
  )
93
- .description('A modular, multi-repository documentation site generator for AsciiDoc.')
93
+ .description('A modular, single or multi-repository documentation site generator for AsciiDoc.')
94
94
  .usage('[options] [[command] [args]]')
95
95
  .helpOption('-h, --help', 'Output usage information.')
96
96
  .addHelpText('after', () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antora/cli",
3
- "version": "3.2.0-alpha.4",
3
+ "version": "3.2.0-alpha.5",
4
4
  "description": "The command line interface for Antora.",
5
5
  "license": "MPL-2.0",
6
6
  "author": "OpenDevise Inc. (https://opendevise.com)",
@@ -25,20 +25,20 @@
25
25
  "antora": "bin/antora"
26
26
  },
27
27
  "dependencies": {
28
- "@antora/logger": "3.2.0-alpha.4",
29
- "@antora/playbook-builder": "3.2.0-alpha.4",
28
+ "@antora/logger": "3.2.0-alpha.5",
29
+ "@antora/playbook-builder": "3.2.0-alpha.5",
30
30
  "@antora/user-require-helper": "~2.0",
31
- "commander": "~10.0"
31
+ "commander": "~12.1"
32
32
  },
33
33
  "devDependencies": {
34
- "@antora/site-generator": "3.2.0-alpha.4",
35
- "@antora/site-publisher": "3.2.0-alpha.4",
34
+ "@antora/site-generator": "3.2.0-alpha.5",
35
+ "@antora/site-publisher": "3.2.0-alpha.5",
36
36
  "@asciidoctor/core": "~2.2",
37
37
  "convict": "~6.2",
38
38
  "kapok-js": "~0.10"
39
39
  },
40
40
  "engines": {
41
- "node": ">=16.0.0"
41
+ "node": ">=18.0.0"
42
42
  },
43
43
  "files": [
44
44
  "bin/",