antora 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 +3 -3
- package/package.json +11 -7
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ antora -v
|
|
|
26
26
|
|
|
27
27
|
Alternately, to install Antora within your project (i.e., locally), use:
|
|
28
28
|
|
|
29
|
-
```
|
|
29
|
+
```sh
|
|
30
30
|
npm i antora
|
|
31
31
|
```
|
|
32
32
|
|
|
@@ -42,7 +42,7 @@ The `antora` command (specifically the implicit `generate` subcommand) will look
|
|
|
42
42
|
|
|
43
43
|
## How to Use
|
|
44
44
|
|
|
45
|
-
To run Antora, you
|
|
45
|
+
To run Antora, you’ll need a playbook file and at least one content (source) repository.
|
|
46
46
|
Consult the [quickstart](https://docs.antora.org/antora/latest/install-and-run-quickstart/) to find an example.
|
|
47
47
|
|
|
48
48
|
Once you have your content sources set up, point the `antora` command at your playbook file:
|
|
@@ -57,7 +57,7 @@ or
|
|
|
57
57
|
npx antora antora-playbook.yml
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
-
The `antora` command will output the generated site to the
|
|
60
|
+
The `antora` command will output the generated site to the _build/site_ folder by default.
|
|
61
61
|
|
|
62
62
|
## Copyright and License
|
|
63
63
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antora",
|
|
3
|
-
"version": "3.2.0-alpha.
|
|
3
|
+
"version": "3.2.0-alpha.11",
|
|
4
4
|
"description": "A meta package for Antora that installs both the CLI and site generator.",
|
|
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/antora"
|
|
16
|
+
},
|
|
13
17
|
"bugs": {
|
|
14
18
|
"url": "https://gitlab.com/antora/antora/issues"
|
|
15
19
|
},
|
|
@@ -17,11 +21,11 @@
|
|
|
17
21
|
"antora": "bin/antora"
|
|
18
22
|
},
|
|
19
23
|
"dependencies": {
|
|
20
|
-
"@antora/cli": "3.2.0-alpha.
|
|
21
|
-
"@antora/site-generator": "3.2.0-alpha.
|
|
24
|
+
"@antora/cli": "3.2.0-alpha.11",
|
|
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
|
"bin/"
|
|
@@ -35,7 +39,7 @@
|
|
|
35
39
|
"web publishing"
|
|
36
40
|
],
|
|
37
41
|
"scripts": {
|
|
38
|
-
"prepublishOnly": "
|
|
39
|
-
"postpublish": "
|
|
42
|
+
"prepublishOnly": "npx -y downdoc@latest --prepublish",
|
|
43
|
+
"postpublish": "npx -y downdoc@latest --postpublish"
|
|
40
44
|
}
|
|
41
45
|
}
|