@antora/site-generator-default 3.2.0-alpha.1 → 3.2.0-alpha.11
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/package.json +10 -6
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Antora Default Site Generator
|
|
2
2
|
|
|
3
3
|
This is the site generator for Antora.
|
|
4
|
-
This generator is invoked by the `generate` command of Antora
|
|
4
|
+
This generator is invoked by the `generate` command of Antora’s CLI to produce and publish static documentation sites.
|
|
5
5
|
|
|
6
6
|
**This package is an alias for the `@antora/site-generator` package.**
|
|
7
7
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antora/site-generator-default",
|
|
3
|
-
"version": "3.2.0-alpha.
|
|
3
|
+
"version": "3.2.0-alpha.11",
|
|
4
4
|
"description": "An alias for the @antora/site-generator package.",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"author": "OpenDevise Inc. (https://opendevise.com)",
|
|
@@ -9,7 +9,11 @@
|
|
|
9
9
|
"Sarah White <sarah@opendevise.com>"
|
|
10
10
|
],
|
|
11
11
|
"homepage": "https://antora.org",
|
|
12
|
-
"repository":
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://gitlab.com/antora/antora.git",
|
|
15
|
+
"directory": "packages/site-generator-default"
|
|
16
|
+
},
|
|
13
17
|
"bugs": {
|
|
14
18
|
"url": "https://gitlab.com/antora/antora/issues"
|
|
15
19
|
},
|
|
@@ -18,10 +22,10 @@
|
|
|
18
22
|
".": "./lib/index.js"
|
|
19
23
|
},
|
|
20
24
|
"dependencies": {
|
|
21
|
-
"@antora/site-generator": "3.2.0-alpha.
|
|
25
|
+
"@antora/site-generator": "3.2.0-alpha.11"
|
|
22
26
|
},
|
|
23
27
|
"engines": {
|
|
24
|
-
"node": ">=
|
|
28
|
+
"node": ">=18.0.0"
|
|
25
29
|
},
|
|
26
30
|
"files": [
|
|
27
31
|
"lib/"
|
|
@@ -37,7 +41,7 @@
|
|
|
37
41
|
],
|
|
38
42
|
"scripts": {
|
|
39
43
|
"test": "_mocha",
|
|
40
|
-
"prepublishOnly": "
|
|
41
|
-
"postpublish": "
|
|
44
|
+
"prepublishOnly": "npx -y downdoc@latest --prepublish",
|
|
45
|
+
"postpublish": "npx -y downdoc@latest --postpublish"
|
|
42
46
|
}
|
|
43
47
|
}
|