@antora/ui-loader 3.0.0-rc.4 → 3.0.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/lib/ui-catalog.js CHANGED
@@ -20,7 +20,7 @@ class UiCatalog {
20
20
  if (!filesForType) this[$files].set(file.type, (filesForType = new Map()))
21
21
  const key = file.path
22
22
  if (filesForType.has(key)) {
23
- throw new Error('Duplicate file')
23
+ throw new Error('Duplicate UI file: ' + key)
24
24
  }
25
25
  filesForType.set(key, file)
26
26
  return file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antora/ui-loader",
3
- "version": "3.0.0-rc.4",
3
+ "version": "3.0.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)",
@@ -48,5 +48,5 @@
48
48
  "static site",
49
49
  "web publishing"
50
50
  ],
51
- "gitHead": "5e29b434cf6e83e0e8e02c0793425bdf4d25bed2"
51
+ "gitHead": "e8e6f6ba33b1ab3f796907b5a256893a64844cd1"
52
52
  }