kirbyup 1.3.0 → 1.3.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/dist/chunks/index.mjs +2 -2
- package/package.json +1 -1
package/dist/chunks/index.mjs
CHANGED
|
@@ -3268,7 +3268,7 @@ function vuePlugin(rawOptions = {}) {
|
|
|
3268
3268
|
}
|
|
3269
3269
|
|
|
3270
3270
|
const name = "kirbyup";
|
|
3271
|
-
const version = "1.3.
|
|
3271
|
+
const version = "1.3.1";
|
|
3272
3272
|
|
|
3273
3273
|
class PrettyError extends Error {
|
|
3274
3274
|
constructor(message) {
|
|
@@ -3440,7 +3440,7 @@ async function generate(options) {
|
|
|
3440
3440
|
longest = l;
|
|
3441
3441
|
}
|
|
3442
3442
|
for (const { fileName, type, code } of output) {
|
|
3443
|
-
printFileInfo(options.cwd, outDir, fileName, code ?? await readFile(resolve$1(outDir, fileName), "utf8"), type, longest);
|
|
3443
|
+
await printFileInfo(options.cwd, outDir, fileName, code ?? await readFile(resolve$1(outDir, fileName), "utf8"), type, longest);
|
|
3444
3444
|
}
|
|
3445
3445
|
}
|
|
3446
3446
|
return result;
|