@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 +5 -0
- package/package.json +1 -1
- package/src/jobs/generate.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/jobs/generate.js
CHANGED
|
@@ -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
|