@kenjura/ursa 0.81.3 → 0.81.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # 0.81.4
2
+ 2026-05-04
3
+
4
+ - bug fix: directory index html files were never being written...impossibly, but there it is
5
+
1
6
  # 0.81.3
2
7
  2026-04-14
3
8
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@kenjura/ursa",
3
3
  "author": "Andrew London <andrew@kenjura.com>",
4
4
  "type": "module",
5
- "version": "0.81.3",
5
+ "version": "0.81.4",
6
6
  "description": "static site generator from MD/wikitext/YML",
7
7
  "main": "lib/index.js",
8
8
  "bin": {
@@ -1025,7 +1025,7 @@ export async function generate({
1025
1025
 
1026
1026
  // html
1027
1027
  const htmlOutputFilename = dirPath.replace(source, output) + ".html";
1028
- const indexAlreadyExists = fileExists(htmlOutputFilename);
1028
+ const indexAlreadyExists = await fileExists(htmlOutputFilename);
1029
1029
  if (!indexAlreadyExists) {
1030
1030
  const template = templates["default-template"];
1031
1031
  const indexHtml = `<ul>${pathsInThisDirectory