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 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");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-vercel",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",