vite-plugin-vercel 11.0.0-beta.21 → 11.0.0-beta.23

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.
Files changed (2) hide show
  1. package/dist/vite.js +2 -2
  2. package/package.json +3 -2
package/dist/vite.js CHANGED
@@ -6,7 +6,7 @@ import path from "node:path";
6
6
  import { vercelOutputConfigSchema, vercelOutputPrerenderConfigSchema, vercelOutputVcConfigSchema } from "@vite-plugin-vercel/schemas";
7
7
  import { fromRou3 } from "convert-route/rou3";
8
8
  import { BuildEnvironment, createRunnableDevEnvironment, mergeConfig, normalizePath } from "vite";
9
- import { catchAll, devServer } from "@universal-deploy/store/vite";
9
+ import { catchAll, devServer } from "@universal-deploy/vite";
10
10
  import { addEntry, getAllEntries } from "@universal-deploy/store";
11
11
  import fs, { existsSync, readFileSync, writeFileSync } from "node:fs";
12
12
  import { copyFile, cp, rmdir, unlink } from "node:fs/promises";
@@ -292,7 +292,7 @@ async function bundle$1(pluginContext, bundledAssets, outfile) {
292
292
  const buildOptions = {};
293
293
  buildOptions.output = {
294
294
  format: "esm",
295
- legalComments: "none",
295
+ comments: { legal: false },
296
296
  codeSplitting: false
297
297
  };
298
298
  buildOptions.checks = { pluginTimings: false };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-vercel",
3
- "version": "11.0.0-beta.21",
3
+ "version": "11.0.0-beta.23",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -33,7 +33,8 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@manypkg/find-root": "^3.1.0",
36
- "@universal-deploy/store": "^0.1.3",
36
+ "@universal-deploy/store": "^0.2.0",
37
+ "@universal-deploy/vite": "^0.1.0",
37
38
  "@universal-middleware/core": "^0.4.13",
38
39
  "@universal-middleware/vercel": "^0.4.29",
39
40
  "@vercel/build-utils": "^13.2.3",