vite-plugin-vercel 7.0.2 → 8.0.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/index.cjs +25 -32
- package/dist/index.js +25 -32
- package/package.json +11 -11
package/dist/index.cjs
CHANGED
|
@@ -42,10 +42,9 @@ function getRoot(config) {
|
|
|
42
42
|
return (0, import_vite.normalizePath)(config.root || process.cwd());
|
|
43
43
|
}
|
|
44
44
|
function getOutput(config, suffix) {
|
|
45
|
-
var _a, _b;
|
|
46
45
|
return import_path.default.join(
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
config.vercel?.outDir ? "" : getRoot(config),
|
|
47
|
+
config.vercel?.outDir ?? ".vercel/output",
|
|
49
48
|
suffix ?? ""
|
|
50
49
|
);
|
|
51
50
|
}
|
|
@@ -159,23 +158,22 @@ function reorderEnforce(arr) {
|
|
|
159
158
|
];
|
|
160
159
|
}
|
|
161
160
|
function getConfig(resolvedConfig, rewrites, overrides, headers) {
|
|
162
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l;
|
|
163
161
|
const _rewrites = [
|
|
164
162
|
// User provided config always comes first
|
|
165
|
-
...
|
|
163
|
+
...resolvedConfig.vercel?.rewrites ?? [],
|
|
166
164
|
...rewrites ?? []
|
|
167
165
|
];
|
|
168
166
|
const { routes, error } = (0, import_routing_utils.getTransformedRoutes)({
|
|
169
|
-
cleanUrls:
|
|
170
|
-
trailingSlash:
|
|
167
|
+
cleanUrls: resolvedConfig.vercel?.cleanUrls ?? true,
|
|
168
|
+
trailingSlash: resolvedConfig.vercel?.trailingSlash,
|
|
171
169
|
rewrites: reorderEnforce(_rewrites),
|
|
172
|
-
redirects:
|
|
170
|
+
redirects: resolvedConfig.vercel?.redirects ? reorderEnforce(resolvedConfig.vercel?.redirects) : void 0,
|
|
173
171
|
headers
|
|
174
172
|
});
|
|
175
173
|
if (error) {
|
|
176
174
|
throw error;
|
|
177
175
|
}
|
|
178
|
-
if (
|
|
176
|
+
if (resolvedConfig.vercel?.config?.routes && resolvedConfig.vercel.config.routes.length > 0 && !resolvedConfig.vercel.config.routes.every(
|
|
179
177
|
(r) => "continue" in r && r.continue
|
|
180
178
|
)) {
|
|
181
179
|
console.warn(
|
|
@@ -184,7 +182,7 @@ function getConfig(resolvedConfig, rewrites, overrides, headers) {
|
|
|
184
182
|
}
|
|
185
183
|
let userRoutes = [];
|
|
186
184
|
let buildRoutes = [];
|
|
187
|
-
if (
|
|
185
|
+
if (resolvedConfig.vercel?.config?.routes) {
|
|
188
186
|
const norm = (0, import_routing_utils.normalizeRoutes)(resolvedConfig.vercel.config.routes);
|
|
189
187
|
if (norm.error) {
|
|
190
188
|
throw norm.error;
|
|
@@ -210,10 +208,10 @@ function getConfig(resolvedConfig, rewrites, overrides, headers) {
|
|
|
210
208
|
});
|
|
211
209
|
return vercelOutputConfigSchema.parse({
|
|
212
210
|
version: 3,
|
|
213
|
-
...
|
|
211
|
+
...resolvedConfig.vercel?.config,
|
|
214
212
|
routes: cleanRoutes,
|
|
215
213
|
overrides: {
|
|
216
|
-
...
|
|
214
|
+
...resolvedConfig.vercel?.config?.overrides,
|
|
217
215
|
...overrides
|
|
218
216
|
}
|
|
219
217
|
});
|
|
@@ -235,6 +233,7 @@ async function writeConfig(resolvedConfig, rewrites, overrides, headers) {
|
|
|
235
233
|
|
|
236
234
|
// src/build.ts
|
|
237
235
|
var import_fast_glob = __toESM(require("fast-glob"), 1);
|
|
236
|
+
var import_module = require("module");
|
|
238
237
|
var import_path3 = __toESM(require("path"), 1);
|
|
239
238
|
var import_esbuild = require("esbuild");
|
|
240
239
|
|
|
@@ -298,8 +297,7 @@ var import_build_utils = require("@vercel/build-utils");
|
|
|
298
297
|
var import_nft = require("@vercel/nft");
|
|
299
298
|
var import_find_root = require("@manypkg/find-root");
|
|
300
299
|
function getAdditionalEndpoints(resolvedConfig) {
|
|
301
|
-
|
|
302
|
-
return (((_a = resolvedConfig.vercel) == null ? void 0 : _a.additionalEndpoints) ?? []).map((e) => ({
|
|
300
|
+
return (resolvedConfig.vercel?.additionalEndpoints ?? []).map((e) => ({
|
|
303
301
|
...e,
|
|
304
302
|
addRoute: e.addRoute ?? true,
|
|
305
303
|
// path.resolve removes the trailing slash if any
|
|
@@ -373,7 +371,6 @@ var standardBuildOptions = {
|
|
|
373
371
|
}
|
|
374
372
|
};
|
|
375
373
|
async function buildFn(resolvedConfig, entry, buildOptions) {
|
|
376
|
-
var _a;
|
|
377
374
|
assert(
|
|
378
375
|
entry.destination.length > 0,
|
|
379
376
|
`Endpoint ${typeof entry.source === "string" ? entry.source : "-"} does not have build destination`
|
|
@@ -405,14 +402,17 @@ async function buildFn(resolvedConfig, entry, buildOptions) {
|
|
|
405
402
|
}
|
|
406
403
|
}
|
|
407
404
|
if (entry.edge) {
|
|
405
|
+
delete options.platform;
|
|
406
|
+
options.external = [...import_module.builtinModules, ...import_module.builtinModules.map((m) => `node:${m}`)];
|
|
408
407
|
options.conditions = [
|
|
409
408
|
"edge-light",
|
|
409
|
+
"worker",
|
|
410
410
|
"browser",
|
|
411
411
|
"module",
|
|
412
412
|
"import",
|
|
413
413
|
"require"
|
|
414
414
|
];
|
|
415
|
-
|
|
415
|
+
options.plugins?.push(edgeWasmPlugin);
|
|
416
416
|
options.format = "esm";
|
|
417
417
|
} else if (options.format === "esm") {
|
|
418
418
|
options.banner = {
|
|
@@ -478,7 +478,6 @@ const __dirname = VPV_dirname(__filename);
|
|
|
478
478
|
return output;
|
|
479
479
|
}
|
|
480
480
|
async function writeVcConfig(resolvedConfig, destination, filename, options) {
|
|
481
|
-
var _a, _b;
|
|
482
481
|
const vcConfig = import_path3.default.join(
|
|
483
482
|
getOutput(resolvedConfig, "functions"),
|
|
484
483
|
destination,
|
|
@@ -495,10 +494,10 @@ async function writeVcConfig(resolvedConfig, destination, filename, options) {
|
|
|
495
494
|
} : {
|
|
496
495
|
runtime: nodeVersion.runtime,
|
|
497
496
|
handler: filename,
|
|
498
|
-
maxDuration:
|
|
497
|
+
maxDuration: resolvedConfig.vercel?.defaultMaxDuration,
|
|
499
498
|
launcherType: "Nodejs",
|
|
500
499
|
shouldAddHelpers: true,
|
|
501
|
-
supportsResponseStreaming: options.streaming ??
|
|
500
|
+
supportsResponseStreaming: options.streaming ?? resolvedConfig.vercel?.defaultSupportsResponseStreaming
|
|
502
501
|
}
|
|
503
502
|
),
|
|
504
503
|
void 0,
|
|
@@ -631,12 +630,11 @@ async function copyDir(src, dest) {
|
|
|
631
630
|
|
|
632
631
|
// src/prerender.ts
|
|
633
632
|
function execPrerender(resolvedConfig) {
|
|
634
|
-
|
|
635
|
-
const prerender = (_a = resolvedConfig.vercel) == null ? void 0 : _a.prerender;
|
|
633
|
+
const prerender = resolvedConfig.vercel?.prerender;
|
|
636
634
|
if (prerender === false) {
|
|
637
635
|
return;
|
|
638
636
|
}
|
|
639
|
-
return prerender
|
|
637
|
+
return prerender?.(resolvedConfig);
|
|
640
638
|
}
|
|
641
639
|
var group = 1;
|
|
642
640
|
async function writePrerenderConfig(resolvedConfig, destination, isr) {
|
|
@@ -707,8 +705,7 @@ async function buildPrerenderConfigs(resolvedConfig, extractedIsr) {
|
|
|
707
705
|
return rewrites;
|
|
708
706
|
}
|
|
709
707
|
async function getIsrConfig(resolvedConfig) {
|
|
710
|
-
|
|
711
|
-
const isr = ((_a = resolvedConfig.vercel) == null ? void 0 : _a.isr) ?? {};
|
|
708
|
+
const isr = resolvedConfig.vercel?.isr ?? {};
|
|
712
709
|
if (typeof isr === "function") {
|
|
713
710
|
return await isr();
|
|
714
711
|
}
|
|
@@ -730,8 +727,7 @@ function vercelPluginCleanup() {
|
|
|
730
727
|
order: "pre",
|
|
731
728
|
sequential: true,
|
|
732
729
|
async handler() {
|
|
733
|
-
|
|
734
|
-
if (!((_a = resolvedConfig.build) == null ? void 0 : _a.ssr)) {
|
|
730
|
+
if (!resolvedConfig.build?.ssr) {
|
|
735
731
|
await cleanOutputDirectory(resolvedConfig);
|
|
736
732
|
}
|
|
737
733
|
}
|
|
@@ -746,12 +742,11 @@ function vercelPlugin() {
|
|
|
746
742
|
name: "vite-plugin-vercel",
|
|
747
743
|
enforce: "post",
|
|
748
744
|
configResolved(config) {
|
|
749
|
-
var _a;
|
|
750
745
|
resolvedConfig = config;
|
|
751
746
|
vikeFound = resolvedConfig.plugins.some(
|
|
752
747
|
(p) => p.name.match("^vite-plugin-ssr:|^vike:")
|
|
753
748
|
);
|
|
754
|
-
if (typeof
|
|
749
|
+
if (typeof resolvedConfig.vercel?.distContainsOnlyStatic === "undefined") {
|
|
755
750
|
resolvedConfig.vercel ??= {};
|
|
756
751
|
resolvedConfig.vercel.distContainsOnlyStatic = !vikeFound;
|
|
757
752
|
}
|
|
@@ -760,8 +755,7 @@ function vercelPlugin() {
|
|
|
760
755
|
order: "post",
|
|
761
756
|
sequential: true,
|
|
762
757
|
async handler() {
|
|
763
|
-
|
|
764
|
-
if (!((_a = resolvedConfig.build) == null ? void 0 : _a.ssr)) {
|
|
758
|
+
if (!resolvedConfig.build?.ssr) {
|
|
765
759
|
if (vikeFound) {
|
|
766
760
|
return;
|
|
767
761
|
}
|
|
@@ -792,8 +786,7 @@ async function cleanOutputDirectory(resolvedConfig) {
|
|
|
792
786
|
await import_promises5.default.mkdir(getOutput(resolvedConfig), { recursive: true });
|
|
793
787
|
}
|
|
794
788
|
async function copyDistToStatic(resolvedConfig) {
|
|
795
|
-
|
|
796
|
-
if ((_a = resolvedConfig.vercel) == null ? void 0 : _a.distContainsOnlyStatic) {
|
|
789
|
+
if (resolvedConfig.vercel?.distContainsOnlyStatic) {
|
|
797
790
|
await copyDir(
|
|
798
791
|
resolvedConfig.build.outDir,
|
|
799
792
|
getOutput(resolvedConfig, "static")
|
package/dist/index.js
CHANGED
|
@@ -8,10 +8,9 @@ function getRoot(config) {
|
|
|
8
8
|
return normalizePath(config.root || process.cwd());
|
|
9
9
|
}
|
|
10
10
|
function getOutput(config, suffix) {
|
|
11
|
-
var _a, _b;
|
|
12
11
|
return path.join(
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
config.vercel?.outDir ? "" : getRoot(config),
|
|
13
|
+
config.vercel?.outDir ?? ".vercel/output",
|
|
15
14
|
suffix ?? ""
|
|
16
15
|
);
|
|
17
16
|
}
|
|
@@ -129,23 +128,22 @@ function reorderEnforce(arr) {
|
|
|
129
128
|
];
|
|
130
129
|
}
|
|
131
130
|
function getConfig(resolvedConfig, rewrites, overrides, headers) {
|
|
132
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l;
|
|
133
131
|
const _rewrites = [
|
|
134
132
|
// User provided config always comes first
|
|
135
|
-
...
|
|
133
|
+
...resolvedConfig.vercel?.rewrites ?? [],
|
|
136
134
|
...rewrites ?? []
|
|
137
135
|
];
|
|
138
136
|
const { routes, error } = getTransformedRoutes({
|
|
139
|
-
cleanUrls:
|
|
140
|
-
trailingSlash:
|
|
137
|
+
cleanUrls: resolvedConfig.vercel?.cleanUrls ?? true,
|
|
138
|
+
trailingSlash: resolvedConfig.vercel?.trailingSlash,
|
|
141
139
|
rewrites: reorderEnforce(_rewrites),
|
|
142
|
-
redirects:
|
|
140
|
+
redirects: resolvedConfig.vercel?.redirects ? reorderEnforce(resolvedConfig.vercel?.redirects) : void 0,
|
|
143
141
|
headers
|
|
144
142
|
});
|
|
145
143
|
if (error) {
|
|
146
144
|
throw error;
|
|
147
145
|
}
|
|
148
|
-
if (
|
|
146
|
+
if (resolvedConfig.vercel?.config?.routes && resolvedConfig.vercel.config.routes.length > 0 && !resolvedConfig.vercel.config.routes.every(
|
|
149
147
|
(r) => "continue" in r && r.continue
|
|
150
148
|
)) {
|
|
151
149
|
console.warn(
|
|
@@ -154,7 +152,7 @@ function getConfig(resolvedConfig, rewrites, overrides, headers) {
|
|
|
154
152
|
}
|
|
155
153
|
let userRoutes = [];
|
|
156
154
|
let buildRoutes = [];
|
|
157
|
-
if (
|
|
155
|
+
if (resolvedConfig.vercel?.config?.routes) {
|
|
158
156
|
const norm = normalizeRoutes(resolvedConfig.vercel.config.routes);
|
|
159
157
|
if (norm.error) {
|
|
160
158
|
throw norm.error;
|
|
@@ -180,10 +178,10 @@ function getConfig(resolvedConfig, rewrites, overrides, headers) {
|
|
|
180
178
|
});
|
|
181
179
|
return vercelOutputConfigSchema.parse({
|
|
182
180
|
version: 3,
|
|
183
|
-
...
|
|
181
|
+
...resolvedConfig.vercel?.config,
|
|
184
182
|
routes: cleanRoutes,
|
|
185
183
|
overrides: {
|
|
186
|
-
...
|
|
184
|
+
...resolvedConfig.vercel?.config?.overrides,
|
|
187
185
|
...overrides
|
|
188
186
|
}
|
|
189
187
|
});
|
|
@@ -205,6 +203,7 @@ async function writeConfig(resolvedConfig, rewrites, overrides, headers) {
|
|
|
205
203
|
|
|
206
204
|
// src/build.ts
|
|
207
205
|
import glob from "fast-glob";
|
|
206
|
+
import { builtinModules } from "module";
|
|
208
207
|
import path3, { basename } from "path";
|
|
209
208
|
import { build } from "esbuild";
|
|
210
209
|
|
|
@@ -268,8 +267,7 @@ import { getNodeVersion } from "@vercel/build-utils";
|
|
|
268
267
|
import { nodeFileTrace } from "@vercel/nft";
|
|
269
268
|
import { findRoot } from "@manypkg/find-root";
|
|
270
269
|
function getAdditionalEndpoints(resolvedConfig) {
|
|
271
|
-
|
|
272
|
-
return (((_a = resolvedConfig.vercel) == null ? void 0 : _a.additionalEndpoints) ?? []).map((e) => ({
|
|
270
|
+
return (resolvedConfig.vercel?.additionalEndpoints ?? []).map((e) => ({
|
|
273
271
|
...e,
|
|
274
272
|
addRoute: e.addRoute ?? true,
|
|
275
273
|
// path.resolve removes the trailing slash if any
|
|
@@ -343,7 +341,6 @@ var standardBuildOptions = {
|
|
|
343
341
|
}
|
|
344
342
|
};
|
|
345
343
|
async function buildFn(resolvedConfig, entry, buildOptions) {
|
|
346
|
-
var _a;
|
|
347
344
|
assert(
|
|
348
345
|
entry.destination.length > 0,
|
|
349
346
|
`Endpoint ${typeof entry.source === "string" ? entry.source : "-"} does not have build destination`
|
|
@@ -375,14 +372,17 @@ async function buildFn(resolvedConfig, entry, buildOptions) {
|
|
|
375
372
|
}
|
|
376
373
|
}
|
|
377
374
|
if (entry.edge) {
|
|
375
|
+
delete options.platform;
|
|
376
|
+
options.external = [...builtinModules, ...builtinModules.map((m) => `node:${m}`)];
|
|
378
377
|
options.conditions = [
|
|
379
378
|
"edge-light",
|
|
379
|
+
"worker",
|
|
380
380
|
"browser",
|
|
381
381
|
"module",
|
|
382
382
|
"import",
|
|
383
383
|
"require"
|
|
384
384
|
];
|
|
385
|
-
|
|
385
|
+
options.plugins?.push(edgeWasmPlugin);
|
|
386
386
|
options.format = "esm";
|
|
387
387
|
} else if (options.format === "esm") {
|
|
388
388
|
options.banner = {
|
|
@@ -448,7 +448,6 @@ const __dirname = VPV_dirname(__filename);
|
|
|
448
448
|
return output;
|
|
449
449
|
}
|
|
450
450
|
async function writeVcConfig(resolvedConfig, destination, filename, options) {
|
|
451
|
-
var _a, _b;
|
|
452
451
|
const vcConfig = path3.join(
|
|
453
452
|
getOutput(resolvedConfig, "functions"),
|
|
454
453
|
destination,
|
|
@@ -465,10 +464,10 @@ async function writeVcConfig(resolvedConfig, destination, filename, options) {
|
|
|
465
464
|
} : {
|
|
466
465
|
runtime: nodeVersion.runtime,
|
|
467
466
|
handler: filename,
|
|
468
|
-
maxDuration:
|
|
467
|
+
maxDuration: resolvedConfig.vercel?.defaultMaxDuration,
|
|
469
468
|
launcherType: "Nodejs",
|
|
470
469
|
shouldAddHelpers: true,
|
|
471
|
-
supportsResponseStreaming: options.streaming ??
|
|
470
|
+
supportsResponseStreaming: options.streaming ?? resolvedConfig.vercel?.defaultSupportsResponseStreaming
|
|
472
471
|
}
|
|
473
472
|
),
|
|
474
473
|
void 0,
|
|
@@ -601,12 +600,11 @@ async function copyDir(src, dest) {
|
|
|
601
600
|
|
|
602
601
|
// src/prerender.ts
|
|
603
602
|
function execPrerender(resolvedConfig) {
|
|
604
|
-
|
|
605
|
-
const prerender = (_a = resolvedConfig.vercel) == null ? void 0 : _a.prerender;
|
|
603
|
+
const prerender = resolvedConfig.vercel?.prerender;
|
|
606
604
|
if (prerender === false) {
|
|
607
605
|
return;
|
|
608
606
|
}
|
|
609
|
-
return prerender
|
|
607
|
+
return prerender?.(resolvedConfig);
|
|
610
608
|
}
|
|
611
609
|
var group = 1;
|
|
612
610
|
async function writePrerenderConfig(resolvedConfig, destination, isr) {
|
|
@@ -677,8 +675,7 @@ async function buildPrerenderConfigs(resolvedConfig, extractedIsr) {
|
|
|
677
675
|
return rewrites;
|
|
678
676
|
}
|
|
679
677
|
async function getIsrConfig(resolvedConfig) {
|
|
680
|
-
|
|
681
|
-
const isr = ((_a = resolvedConfig.vercel) == null ? void 0 : _a.isr) ?? {};
|
|
678
|
+
const isr = resolvedConfig.vercel?.isr ?? {};
|
|
682
679
|
if (typeof isr === "function") {
|
|
683
680
|
return await isr();
|
|
684
681
|
}
|
|
@@ -700,8 +697,7 @@ function vercelPluginCleanup() {
|
|
|
700
697
|
order: "pre",
|
|
701
698
|
sequential: true,
|
|
702
699
|
async handler() {
|
|
703
|
-
|
|
704
|
-
if (!((_a = resolvedConfig.build) == null ? void 0 : _a.ssr)) {
|
|
700
|
+
if (!resolvedConfig.build?.ssr) {
|
|
705
701
|
await cleanOutputDirectory(resolvedConfig);
|
|
706
702
|
}
|
|
707
703
|
}
|
|
@@ -716,12 +712,11 @@ function vercelPlugin() {
|
|
|
716
712
|
name: "vite-plugin-vercel",
|
|
717
713
|
enforce: "post",
|
|
718
714
|
configResolved(config) {
|
|
719
|
-
var _a;
|
|
720
715
|
resolvedConfig = config;
|
|
721
716
|
vikeFound = resolvedConfig.plugins.some(
|
|
722
717
|
(p) => p.name.match("^vite-plugin-ssr:|^vike:")
|
|
723
718
|
);
|
|
724
|
-
if (typeof
|
|
719
|
+
if (typeof resolvedConfig.vercel?.distContainsOnlyStatic === "undefined") {
|
|
725
720
|
resolvedConfig.vercel ??= {};
|
|
726
721
|
resolvedConfig.vercel.distContainsOnlyStatic = !vikeFound;
|
|
727
722
|
}
|
|
@@ -730,8 +725,7 @@ function vercelPlugin() {
|
|
|
730
725
|
order: "post",
|
|
731
726
|
sequential: true,
|
|
732
727
|
async handler() {
|
|
733
|
-
|
|
734
|
-
if (!((_a = resolvedConfig.build) == null ? void 0 : _a.ssr)) {
|
|
728
|
+
if (!resolvedConfig.build?.ssr) {
|
|
735
729
|
if (vikeFound) {
|
|
736
730
|
return;
|
|
737
731
|
}
|
|
@@ -762,8 +756,7 @@ async function cleanOutputDirectory(resolvedConfig) {
|
|
|
762
756
|
await fs5.mkdir(getOutput(resolvedConfig), { recursive: true });
|
|
763
757
|
}
|
|
764
758
|
async function copyDistToStatic(resolvedConfig) {
|
|
765
|
-
|
|
766
|
-
if ((_a = resolvedConfig.vercel) == null ? void 0 : _a.distContainsOnlyStatic) {
|
|
759
|
+
if (resolvedConfig.vercel?.distContainsOnlyStatic) {
|
|
767
760
|
await copyDir(
|
|
768
761
|
resolvedConfig.build.outDir,
|
|
769
762
|
getOutput(resolvedConfig, "static")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plugin-vercel",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"vike": "*",
|
|
27
27
|
"vite": "^4.4 || ^5.0.2",
|
|
28
|
-
"@vite-plugin-vercel/vike": "
|
|
28
|
+
"@vite-plugin-vercel/vike": "8.0.1"
|
|
29
29
|
},
|
|
30
30
|
"peerDependenciesMeta": {
|
|
31
31
|
"@vite-plugin-vercel/vike": {
|
|
@@ -37,20 +37,20 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^18.19.31",
|
|
40
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
41
|
-
"@typescript-eslint/parser": "^7.
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
41
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
42
42
|
"eslint": "^8.57.0",
|
|
43
|
-
"tsup": "^8.
|
|
44
|
-
"typescript": "^5.5.
|
|
45
|
-
"vike": "^0.4.
|
|
46
|
-
"vite": "^5.
|
|
47
|
-
"@vite-plugin-vercel/vike": "
|
|
43
|
+
"tsup": "^8.2.4",
|
|
44
|
+
"typescript": "^5.5.4",
|
|
45
|
+
"vike": "^0.4.183",
|
|
46
|
+
"vite": "^5.4.0",
|
|
47
|
+
"@vite-plugin-vercel/vike": "8.0.1"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@brillout/libassert": "^0.5.8",
|
|
51
51
|
"@manypkg/find-root": "^2.2.2",
|
|
52
|
-
"@vercel/build-utils": "^8.
|
|
53
|
-
"@vercel/nft": "^0.27.
|
|
52
|
+
"@vercel/build-utils": "^8.3.6",
|
|
53
|
+
"@vercel/nft": "^0.27.3",
|
|
54
54
|
"@vercel/routing-utils": "^3.1.0",
|
|
55
55
|
"esbuild": "^0.23.0",
|
|
56
56
|
"fast-glob": "^3.3.2",
|