@antora/playbook-builder 3.2.0-alpha.2 → 3.2.0-alpha.4
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 +2 -2
- package/lib/build-playbook.js +1 -1
- package/lib/config/schema.js +6 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Antora Playbook Builder
|
|
2
2
|
|
|
3
3
|
The Playbook Builder is the configuration component for Antora.
|
|
4
|
-
It
|
|
4
|
+
It’s responsible for building a playbook object from user input that’s then used for configuring components in an Antora generator pipeline.
|
|
5
5
|
|
|
6
6
|
[Antora](https://antora.org) is a modular static site generator designed for creating documentation sites from AsciiDoc documents.
|
|
7
7
|
Its site generator aggregates documents from versioned content repositories and processes them using [Asciidoctor](https://asciidoctor.org).
|
|
@@ -10,4 +10,4 @@ Its site generator aggregates documents from versioned content repositories and
|
|
|
10
10
|
|
|
11
11
|
Copyright (C) 2017-present [OpenDevise Inc.](https://opendevise.com) and the [Antora Project](https://antora.org).
|
|
12
12
|
|
|
13
|
-
Use of this software is granted under the terms of the [Mozilla Public License Version 2.0](https://www.mozilla.org/en-US/MPL/2.0/) (MPL-2.0).
|
|
13
|
+
Use of this software is granted under the terms of the [Mozilla Public License Version 2.0](https://www.mozilla.org/en-US/MPL/2.0/) (MPL-2.0).
|
package/lib/build-playbook.js
CHANGED
|
@@ -11,7 +11,7 @@ const ospath = require('path')
|
|
|
11
11
|
*
|
|
12
12
|
* Accepts an array of command line arguments (in the form of option flags and
|
|
13
13
|
* switches) and a map of environment variables and translates this data into a
|
|
14
|
-
* playbook object according the
|
|
14
|
+
* playbook object according the specified schema. If no schema is
|
|
15
15
|
* specified, the default schema provided by this package is used.
|
|
16
16
|
*
|
|
17
17
|
* @memberof playbook-builder
|
package/lib/config/schema.js
CHANGED
|
@@ -167,7 +167,7 @@ module.exports = {
|
|
|
167
167
|
fetch_concurrency: {
|
|
168
168
|
doc: 'The maximum number of fetch or clone operations that are permitted to run at once. Use 0 for unlimited.',
|
|
169
169
|
format: 'int',
|
|
170
|
-
default:
|
|
170
|
+
default: 1,
|
|
171
171
|
},
|
|
172
172
|
plugins: {
|
|
173
173
|
credential_manager: {
|
|
@@ -181,6 +181,11 @@ module.exports = {
|
|
|
181
181
|
default: undefined,
|
|
182
182
|
},
|
|
183
183
|
},
|
|
184
|
+
read_concurrency: {
|
|
185
|
+
doc: 'The maximum number of git indexes that are read into memory at once. Use 0 for unlimited.',
|
|
186
|
+
format: 'int',
|
|
187
|
+
default: 0,
|
|
188
|
+
},
|
|
184
189
|
},
|
|
185
190
|
network: {
|
|
186
191
|
http_proxy: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antora/playbook-builder",
|
|
3
|
-
"version": "3.2.0-alpha.
|
|
3
|
+
"version": "3.2.0-alpha.4",
|
|
4
4
|
"description": "Builds a playbook object from user input for configuring successive documentation components in an Antora pipeline.",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"author": "OpenDevise Inc. (https://opendevise.com)",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
],
|
|
45
45
|
"scripts": {
|
|
46
46
|
"test": "_mocha",
|
|
47
|
-
"prepublishOnly": "
|
|
48
|
-
"postpublish": "
|
|
47
|
+
"prepublishOnly": "npx -y downdoc@latest --prepublish",
|
|
48
|
+
"postpublish": "npx -y downdoc@latest --postpublish"
|
|
49
49
|
}
|
|
50
50
|
}
|