@antora/site-publisher 3.0.0-beta.1 → 3.0.0-beta.2

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.
@@ -12,11 +12,11 @@ class File extends Vinyl {
12
12
  class ReadableOutputFileArray extends Readable {
13
13
  constructor (array) {
14
14
  super({ objectMode: true })
15
- this.array = array.slice().reverse()
15
+ this._array = array.slice().reverse()
16
16
  }
17
17
 
18
18
  _read (size) {
19
- const array = this.array
19
+ const array = this._array
20
20
  while (size--) {
21
21
  const next = array.pop()
22
22
  if (next === undefined) break
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antora/site-publisher",
3
- "version": "3.0.0-beta.1",
3
+ "version": "3.0.0-beta.2",
4
4
  "description": "Publishes the files generated in an Antora documentation pipeline to the destination(s) specified in the playbook.",
5
5
  "license": "MPL-2.0",
6
6
  "author": "OpenDevise Inc. (https://opendevise.com)",
@@ -35,5 +35,5 @@
35
35
  "static site",
36
36
  "web publishing"
37
37
  ],
38
- "gitHead": "7c5ef1ea93dd489af533c80a936c736013c41769"
38
+ "gitHead": "5cd3f9cc70622e465cb44daf1aa2035ed5a35f54"
39
39
  }