@antora/playbook-builder 3.1.3 → 3.1.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.
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's responsible for building a playbook object from user input that's then used for configuring components in an Antora generator pipeline.
4
+ Its responsible for building a playbook object from user input thats 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).
@@ -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 the specified schema. If no schema is
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antora/playbook-builder",
3
- "version": "3.1.3",
3
+ "version": "3.1.5",
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": "node $npm_config_local_prefix/npm/prepublishOnly.js",
48
- "postpublish": "node $npm_config_local_prefix/npm/postpublish.js"
47
+ "prepublishOnly": "npx -y downdoc --prepublish",
48
+ "postpublish": "npx -y downdoc --postpublish"
49
49
  }
50
50
  }