vite-plugin-vercel 0.3.4 → 0.3.5
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/index.cjs +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -566,6 +566,7 @@ async function cleanOutputDirectory(resolvedConfig) {
|
|
|
566
566
|
recursive: true,
|
|
567
567
|
force: true
|
|
568
568
|
});
|
|
569
|
+
await import_promises4.default.mkdir(getOutput(resolvedConfig), { recursive: true });
|
|
569
570
|
}
|
|
570
571
|
async function computeStaticHtmlOverrides(resolvedConfig) {
|
|
571
572
|
const staticAbsolutePath = getOutput(resolvedConfig, "static");
|
package/dist/index.js
CHANGED
|
@@ -532,6 +532,7 @@ async function cleanOutputDirectory(resolvedConfig) {
|
|
|
532
532
|
recursive: true,
|
|
533
533
|
force: true
|
|
534
534
|
});
|
|
535
|
+
await fs4.mkdir(getOutput(resolvedConfig), { recursive: true });
|
|
535
536
|
}
|
|
536
537
|
async function computeStaticHtmlOverrides(resolvedConfig) {
|
|
537
538
|
const staticAbsolutePath = getOutput(resolvedConfig, "static");
|