1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2026-06-14 15:45:27 -04:00

yarn ➡️ pnpm

This commit is contained in:
2024-06-04 11:50:38 -04:00
parent 5d6d26d967
commit 1ce5f5bc80
8 changed files with 2729 additions and 1920 deletions
+4 -4
View File
@@ -12,9 +12,9 @@ it("Hugo exists and runs?", async function () {
const hugoPath = await hugo();
assert(execFile(hugoPath, ["env"], function (error, stdout) {
if (error) {
if (error)
throw error;
}
console.log(stdout);
}));
});
@@ -28,9 +28,9 @@ it("Hugo doesn't exist, install it instead of throwing an error", async function
const hugoPath = await hugo();
assert(execFile(hugoPath, ["version"], function (error, stdout) {
if (error) {
if (error)
throw error;
}
console.log(stdout);
}));
});