@antora/ui-loader 3.0.0-alpha.9 → 3.0.0-beta.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/README.md +1 -1
- package/lib/load-ui.js +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ The UI Loader is a component in Antora responsible for downloading and caching t
|
|
|
4
4
|
The UI files are combined with the content files at the end of the Antora documentation pipeline to produce a complete site.
|
|
5
5
|
|
|
6
6
|
[Antora](https://antora.org) is a modular static site generator designed for creating documentation sites from AsciiDoc documents.
|
|
7
|
-
Its site generator
|
|
7
|
+
Its site generator aggregates documents from versioned content repositories and processes them using [Asciidoctor](https://asciidoctor.org).
|
|
8
8
|
|
|
9
9
|
## Copyright and License
|
|
10
10
|
|
package/lib/load-ui.js
CHANGED
|
@@ -48,7 +48,7 @@ const EXT_RX = /\.[a-z]{2,3}$/
|
|
|
48
48
|
* @param {String} [playbook.network.noProxy=undefined] - The list of domains and IPs that should not be proxied.
|
|
49
49
|
* @param {Object} playbook.ui - The UI configuration object for Antora.
|
|
50
50
|
* @param {String} playbook.ui.bundle - The UI bundle configuration.
|
|
51
|
-
* @param {String} playbook.ui.bundle.url - The path (relative or absolute) or
|
|
51
|
+
* @param {String} playbook.ui.bundle.url - The path (relative or absolute) or URL
|
|
52
52
|
* of the UI bundle to use.
|
|
53
53
|
* @param {String} [playbook.ui.bundle.startPath=''] - The path inside the bundle from
|
|
54
54
|
* which to start reading files.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antora/ui-loader",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.0-beta.1",
|
|
4
4
|
"description": "Downloads a UI bundle, if necessary, and loads the files into a UI catalog for use in an Antora documentation pipeline.",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"author": "OpenDevise Inc. (https://opendevise.com)",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@antora/expand-path-helper": "~2.0",
|
|
21
21
|
"cache-directory": "~2.0",
|
|
22
|
-
"camelcase-keys": "~
|
|
22
|
+
"camelcase-keys": "~7.0",
|
|
23
23
|
"gulp-vinyl-zip": "~2.5",
|
|
24
24
|
"hpagent": "~0.1.0",
|
|
25
25
|
"js-yaml": "~4.1",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"vinyl-fs": "~3.0"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
|
-
"node": ">=
|
|
34
|
+
"node": ">=12.21.0"
|
|
35
35
|
},
|
|
36
36
|
"files": [
|
|
37
37
|
"lib/"
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"static site",
|
|
46
46
|
"web publishing"
|
|
47
47
|
],
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "7c5ef1ea93dd489af533c80a936c736013c41769"
|
|
49
49
|
}
|