@nuxt/vite-builder-nightly 4.2.0-29344661.0b65203b → 4.2.0-29344722.285eac31
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.d.mts +2 -3
- package/dist/index.d.ts +2 -3
- package/dist/index.mjs +218 -390
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { ViteConfig } from 'nuxt/schema';
|
|
2
|
-
import { EnvironmentOptions } from 'vite';
|
|
3
2
|
import { NuxtBuilder } from '@nuxt/schema';
|
|
4
3
|
|
|
5
4
|
declare const bundle: NuxtBuilder['bundle'];
|
|
6
5
|
|
|
7
6
|
declare module 'nuxt/schema' {
|
|
8
7
|
interface ViteOptions extends ViteConfig {
|
|
9
|
-
$client?:
|
|
10
|
-
$server?:
|
|
8
|
+
$client?: ViteConfig;
|
|
9
|
+
$server?: ViteConfig;
|
|
11
10
|
viteNode?: {
|
|
12
11
|
maxRetryAttempts?: number;
|
|
13
12
|
/** in milliseconds */
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { ViteConfig } from 'nuxt/schema';
|
|
2
|
-
import { EnvironmentOptions } from 'vite';
|
|
3
2
|
import { NuxtBuilder } from '@nuxt/schema';
|
|
4
3
|
|
|
5
4
|
declare const bundle: NuxtBuilder['bundle'];
|
|
6
5
|
|
|
7
6
|
declare module 'nuxt/schema' {
|
|
8
7
|
interface ViteOptions extends ViteConfig {
|
|
9
|
-
$client?:
|
|
10
|
-
$server?:
|
|
8
|
+
$client?: ViteConfig;
|
|
9
|
+
$server?: ViteConfig;
|
|
11
10
|
viteNode?: {
|
|
12
11
|
maxRetryAttempts?: number;
|
|
13
12
|
/** in milliseconds */
|
package/dist/index.mjs
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import fs, { existsSync, readFileSync } from 'node:fs';
|
|
2
2
|
import * as vite from 'vite';
|
|
3
|
-
import { isCSSRequest, createLogger
|
|
4
|
-
import { dirname, normalize,
|
|
5
|
-
import {
|
|
3
|
+
import { isCSSRequest, createLogger } from 'vite';
|
|
4
|
+
import { dirname, normalize, resolve, join, relative, basename, isAbsolute } from 'pathe';
|
|
5
|
+
import { useNitro, logger, useNuxt, resolvePath, getLayerDirectories, createIsIgnored } from '@nuxt/kit';
|
|
6
6
|
import { findStaticImports, sanitizeFilePath } from 'mlly';
|
|
7
|
-
import viteJsxPlugin from '@vitejs/plugin-vue-jsx';
|
|
8
|
-
import vuePlugin from '@vitejs/plugin-vue';
|
|
9
7
|
import { parseURL, parseQuery, joinURL, getQuery, withLeadingSlash, withTrailingSlash, withoutLeadingSlash, withoutBase } from 'ufo';
|
|
10
8
|
import { filename as filename$1 } from 'pathe/utils';
|
|
11
9
|
import { resolveModulePath } from 'exsolve';
|
|
10
|
+
import vuePlugin from '@vitejs/plugin-vue';
|
|
11
|
+
import viteJsxPlugin from '@vitejs/plugin-vue-jsx';
|
|
12
|
+
import { defineEnv } from 'unenv';
|
|
12
13
|
import { pathToFileURL, fileURLToPath } from 'node:url';
|
|
13
14
|
import MagicString from 'magic-string';
|
|
14
15
|
import { unlink, mkdir, writeFile, rm, readFile } from 'node:fs/promises';
|
|
@@ -30,7 +31,6 @@ import { isBuiltin } from 'node:module';
|
|
|
30
31
|
import { createJiti } from 'jiti';
|
|
31
32
|
import { genImport, genArrayFromRaw, genObjectFromRawEntries } from 'knitwork';
|
|
32
33
|
import replacePlugin from '@rollup/plugin-replace';
|
|
33
|
-
import { defineEnv } from 'unenv';
|
|
34
34
|
|
|
35
35
|
function isVue(id, opts = {}) {
|
|
36
36
|
const { search } = parseURL(decodeURIComponent(pathToFileURL(id).href));
|
|
@@ -209,9 +209,8 @@ if (/(?:chunks|shared)$/.test(_distDir)) {
|
|
|
209
209
|
}
|
|
210
210
|
const distDir = _distDir;
|
|
211
211
|
|
|
212
|
-
function getManifest(nuxt,
|
|
212
|
+
function getManifest(nuxt, ssrServer, clientEntry) {
|
|
213
213
|
const css = /* @__PURE__ */ new Set();
|
|
214
|
-
const ssrServer = nuxt.options.experimental.viteEnvironmentApi ? viteServer.environments.ssr : viteServer;
|
|
215
214
|
for (const key of ssrServer.moduleGraph.urlToModuleMap.keys()) {
|
|
216
215
|
if (isCSS(key)) {
|
|
217
216
|
const query = getQuery(key);
|
|
@@ -293,8 +292,9 @@ function useInvalidates() {
|
|
|
293
292
|
function ViteNodePlugin(nuxt) {
|
|
294
293
|
let socketServer;
|
|
295
294
|
const socketPath = generateSocketPath();
|
|
295
|
+
let viteNodeServerOptions;
|
|
296
296
|
const { invalidates, markInvalidate, markInvalidates } = useInvalidates();
|
|
297
|
-
async
|
|
297
|
+
const cleanupSocket = async () => {
|
|
298
298
|
if (socketServer && socketServer.listening) {
|
|
299
299
|
await new Promise((resolveClose) => socketServer.close(() => resolveClose()));
|
|
300
300
|
}
|
|
@@ -304,16 +304,17 @@ function ViteNodePlugin(nuxt) {
|
|
|
304
304
|
} catch {
|
|
305
305
|
}
|
|
306
306
|
}
|
|
307
|
-
}
|
|
307
|
+
};
|
|
308
308
|
return {
|
|
309
309
|
name: "nuxt:vite-node-server",
|
|
310
310
|
enforce: "post",
|
|
311
|
+
applyToEnvironment: (environment) => environment.name === "client",
|
|
311
312
|
configureServer(clientServer) {
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
313
|
+
nuxt.hook("vite:serverCreated", (ssrServer, ctx) => {
|
|
314
|
+
if (!ctx.isServer) {
|
|
315
|
+
return;
|
|
316
|
+
}
|
|
317
|
+
viteNodeServerOptions = {
|
|
317
318
|
socketPath,
|
|
318
319
|
root: nuxt.options.srcDir,
|
|
319
320
|
entryPath: resolveServerEntry(ssrServer.config),
|
|
@@ -327,17 +328,11 @@ function ViteNodePlugin(nuxt) {
|
|
|
327
328
|
};
|
|
328
329
|
process.env.NUXT_VITE_NODE_OPTIONS = JSON.stringify(viteNodeServerOptions);
|
|
329
330
|
socketServer = createViteNodeSocketServer(nuxt, ssrServer, clientServer, invalidates, viteNodeServerOptions);
|
|
330
|
-
}
|
|
331
|
-
if (nuxt.options.experimental.viteEnvironmentApi) {
|
|
332
|
-
resolveServer(clientServer);
|
|
333
|
-
} else {
|
|
334
|
-
nuxt.hook("vite:serverCreated", (ssrServer, ctx) => ctx.isServer ? resolveServer(ssrServer) : void 0);
|
|
335
|
-
}
|
|
331
|
+
});
|
|
336
332
|
nuxt.hook("close", cleanupSocket);
|
|
337
|
-
const client = nuxt.options.experimental.viteEnvironmentApi ? clientServer.environments.client : clientServer;
|
|
338
333
|
nuxt.hook("app:templatesGenerated", (_app, changedTemplates) => {
|
|
339
334
|
for (const template of changedTemplates) {
|
|
340
|
-
const mods =
|
|
335
|
+
const mods = clientServer.moduleGraph.getModulesByFile(`virtual:nuxt:${encodeURIComponent(template.dst)}`);
|
|
341
336
|
for (const mod of mods || []) {
|
|
342
337
|
markInvalidate(mod);
|
|
343
338
|
}
|
|
@@ -349,7 +344,15 @@ function ViteNodePlugin(nuxt) {
|
|
|
349
344
|
});
|
|
350
345
|
},
|
|
351
346
|
async buildEnd() {
|
|
352
|
-
|
|
347
|
+
if (socketServer && socketServer.listening) {
|
|
348
|
+
await new Promise((resolveClose) => socketServer.close(() => resolveClose()));
|
|
349
|
+
}
|
|
350
|
+
if (socketPath && !socketPath.startsWith("\\\\.\\pipe\\")) {
|
|
351
|
+
try {
|
|
352
|
+
await unlink(socketPath);
|
|
353
|
+
} catch {
|
|
354
|
+
}
|
|
355
|
+
}
|
|
353
356
|
}
|
|
354
357
|
};
|
|
355
358
|
}
|
|
@@ -387,20 +390,19 @@ function createViteNodeSocketServer(nuxt, ssrServer, clientServer, invalidates,
|
|
|
387
390
|
}
|
|
388
391
|
case "resolve": {
|
|
389
392
|
const { id: resolveId, importer } = request.payload;
|
|
390
|
-
if (!resolveId) {
|
|
393
|
+
if (!resolveId || !ssrServer) {
|
|
391
394
|
throw createError({ statusCode: 400, message: "Missing id for resolve" });
|
|
392
395
|
}
|
|
393
|
-
const
|
|
394
|
-
const resolvedResult = await ssrNode.resolveId(resolveId, importer).catch(() => null);
|
|
396
|
+
const resolvedResult = await getNode(ssrServer).resolveId(resolveId, importer).catch(() => null);
|
|
395
397
|
sendResponse(socket, request.id, resolvedResult);
|
|
396
398
|
return;
|
|
397
399
|
}
|
|
398
400
|
case "module": {
|
|
399
|
-
if (request.payload.moduleId === "/") {
|
|
401
|
+
if (request.payload.moduleId === "/" || !ssrServer) {
|
|
400
402
|
throw createError({ statusCode: 400, message: "Invalid moduleId" });
|
|
401
403
|
}
|
|
402
|
-
const
|
|
403
|
-
const response = await
|
|
404
|
+
const node = getNode(ssrServer);
|
|
405
|
+
const response = await node.fetchModule(request.payload.moduleId).catch(async (err) => {
|
|
404
406
|
const errorData = {
|
|
405
407
|
code: "VITE_ERROR",
|
|
406
408
|
id: request.payload.moduleId,
|
|
@@ -412,8 +414,7 @@ function createViteNodeSocketServer(nuxt, ssrServer, clientServer, invalidates,
|
|
|
412
414
|
}
|
|
413
415
|
if (!errorData.frame && err.code === "PARSE_ERROR") {
|
|
414
416
|
try {
|
|
415
|
-
|
|
416
|
-
errorData.frame = await clientNode.transformRequest(request.payload.moduleId).then((res) => `${err.message || ""}
|
|
417
|
+
errorData.frame = await node.transformRequest(request.payload.moduleId, "web").then((res) => `${err.message || ""}
|
|
417
418
|
${res?.code}`).catch(() => void 0);
|
|
418
419
|
} catch {
|
|
419
420
|
}
|
|
@@ -940,9 +941,6 @@ function DevServerPlugin(nuxt) {
|
|
|
940
941
|
}
|
|
941
942
|
}));
|
|
942
943
|
});
|
|
943
|
-
if (nuxt.options.experimental.viteEnvironmentApi) {
|
|
944
|
-
await nuxt.callHook("vite:serverCreated", viteServer, { isClient: true, isServer: true });
|
|
945
|
-
}
|
|
946
944
|
const mw = {
|
|
947
945
|
route: "",
|
|
948
946
|
handle: (req, res, next) => {
|
|
@@ -1014,7 +1012,7 @@ async function VitePluginCheckerPlugin(nuxt, environment) {
|
|
|
1014
1012
|
resolveTSConfig(nuxt.options.rootDir)
|
|
1015
1013
|
]);
|
|
1016
1014
|
const supportsProjects = await readTSConfig(tsconfigPath).then((r) => !!r.references?.length);
|
|
1017
|
-
const environments = ["client", nuxt.options.ssr ? "ssr" : void 0].filter((name) =>
|
|
1015
|
+
const environments = ["client", nuxt.options.ssr ? "ssr" : void 0].filter((name) => name === environment);
|
|
1018
1016
|
return environments.map((envName) => ({
|
|
1019
1017
|
applyToEnvironment: (environment2) => environment2.name === envName,
|
|
1020
1018
|
...checker({
|
|
@@ -1027,10 +1025,34 @@ async function VitePluginCheckerPlugin(nuxt, environment) {
|
|
|
1027
1025
|
}
|
|
1028
1026
|
}
|
|
1029
1027
|
|
|
1030
|
-
|
|
1031
|
-
|
|
1028
|
+
async function buildClient(nuxt, ctx) {
|
|
1029
|
+
const nodeCompat = nuxt.options.experimental.clientNodeCompat ? {
|
|
1030
|
+
alias: defineEnv({ nodeCompat: true, resolve: true }).env.alias,
|
|
1031
|
+
define: { global: "globalThis" }
|
|
1032
|
+
} : { define: {} };
|
|
1033
|
+
const clientConfig = vite.mergeConfig(ctx.config, vite.mergeConfig({
|
|
1034
|
+
configFile: false,
|
|
1035
|
+
base: nuxt.options.dev ? joinURL(nuxt.options.app.baseURL.replace(/^\.\//, "/") || "/", nuxt.options.app.buildAssetsDir) : "./",
|
|
1036
|
+
css: {
|
|
1037
|
+
devSourcemap: !!nuxt.options.sourcemap.client
|
|
1038
|
+
},
|
|
1039
|
+
define: {
|
|
1040
|
+
"process.env.NODE_ENV": JSON.stringify(ctx.config.mode),
|
|
1041
|
+
"process.server": false,
|
|
1042
|
+
"process.client": true,
|
|
1043
|
+
"process.browser": true,
|
|
1044
|
+
"process.nitro": false,
|
|
1045
|
+
"process.prerender": false,
|
|
1046
|
+
"import.meta.server": false,
|
|
1047
|
+
"import.meta.client": true,
|
|
1048
|
+
"import.meta.browser": true,
|
|
1049
|
+
"import.meta.nitro": false,
|
|
1050
|
+
"import.meta.prerender": false,
|
|
1051
|
+
"module.hot": false,
|
|
1052
|
+
...nodeCompat.define
|
|
1053
|
+
},
|
|
1032
1054
|
optimizeDeps: {
|
|
1033
|
-
entries: [entry],
|
|
1055
|
+
entries: [ctx.entry],
|
|
1034
1056
|
include: [],
|
|
1035
1057
|
// We exclude Vue and Nuxt common dependencies from optimization
|
|
1036
1058
|
// as they already ship ESM.
|
|
@@ -1074,40 +1096,15 @@ const clientEnvironment = (nuxt, entry) => {
|
|
|
1074
1096
|
"#app-manifest"
|
|
1075
1097
|
]
|
|
1076
1098
|
},
|
|
1077
|
-
|
|
1078
|
-
"process.env.NODE_ENV": JSON.stringify(nuxt.options.vite.mode),
|
|
1079
|
-
"process.server": false,
|
|
1080
|
-
"process.client": true,
|
|
1081
|
-
"process.browser": true,
|
|
1082
|
-
"process.nitro": false,
|
|
1083
|
-
"process.prerender": false,
|
|
1084
|
-
"import.meta.server": false,
|
|
1085
|
-
"import.meta.client": true,
|
|
1086
|
-
"import.meta.browser": true,
|
|
1087
|
-
"import.meta.nitro": false,
|
|
1088
|
-
"import.meta.prerender": false,
|
|
1089
|
-
"module.hot": false,
|
|
1090
|
-
...nuxt.options.experimental.clientNodeCompat ? { global: "globalThis" } : {}
|
|
1091
|
-
},
|
|
1099
|
+
cacheDir: resolve(nuxt.options.rootDir, ctx.config.cacheDir ?? "node_modules/.cache/vite", "client"),
|
|
1092
1100
|
build: {
|
|
1093
|
-
sourcemap: nuxt.options.sourcemap.client ?
|
|
1101
|
+
sourcemap: nuxt.options.sourcemap.client ? ctx.config.build?.sourcemap ?? nuxt.options.sourcemap.client : false,
|
|
1094
1102
|
manifest: "manifest.json",
|
|
1095
1103
|
outDir: resolve(nuxt.options.buildDir, "dist/client"),
|
|
1096
1104
|
rollupOptions: {
|
|
1097
|
-
input: { entry }
|
|
1105
|
+
input: { entry: ctx.entry }
|
|
1098
1106
|
}
|
|
1099
|
-
}
|
|
1100
|
-
};
|
|
1101
|
-
};
|
|
1102
|
-
|
|
1103
|
-
async function buildClient(nuxt, ctx) {
|
|
1104
|
-
const clientConfig = vite.mergeConfig(ctx.config, vite.mergeConfig({
|
|
1105
|
-
configFile: false,
|
|
1106
|
-
base: nuxt.options.dev ? joinURL(nuxt.options.app.baseURL.replace(/^\.\//, "/") || "/", nuxt.options.app.buildAssetsDir) : "./",
|
|
1107
|
-
css: {
|
|
1108
|
-
devSourcemap: !!nuxt.options.sourcemap.client
|
|
1109
1107
|
},
|
|
1110
|
-
cacheDir: resolve(nuxt.options.rootDir, ctx.config.cacheDir ?? "node_modules/.cache/vite", "client"),
|
|
1111
1108
|
plugins: [
|
|
1112
1109
|
DevStyleSSRPlugin({
|
|
1113
1110
|
srcDir: nuxt.options.srcDir,
|
|
@@ -1130,8 +1127,7 @@ async function buildClient(nuxt, ctx) {
|
|
|
1130
1127
|
clientFiles: [ctx.entry]
|
|
1131
1128
|
},
|
|
1132
1129
|
middlewareMode: true
|
|
1133
|
-
}
|
|
1134
|
-
...clientEnvironment(nuxt, ctx.entry)
|
|
1130
|
+
}
|
|
1135
1131
|
}, nuxt.options.vite.$client || {}));
|
|
1136
1132
|
clientConfig.customLogger = createViteLogger(clientConfig);
|
|
1137
1133
|
await nuxt.callHook("vite:extendConfig", clientConfig, { isClient: true, isServer: false });
|
|
@@ -1209,6 +1205,25 @@ async function writeManifest(ctx) {
|
|
|
1209
1205
|
}
|
|
1210
1206
|
}
|
|
1211
1207
|
|
|
1208
|
+
function transpile(envs) {
|
|
1209
|
+
const nuxt = useNuxt();
|
|
1210
|
+
const transpile2 = [];
|
|
1211
|
+
for (let pattern of nuxt.options.build.transpile) {
|
|
1212
|
+
if (typeof pattern === "function") {
|
|
1213
|
+
const result = pattern(envs);
|
|
1214
|
+
if (result) {
|
|
1215
|
+
pattern = result;
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
if (typeof pattern === "string") {
|
|
1219
|
+
transpile2.push(new RegExp(escapeStringRegexp(normalize(pattern))));
|
|
1220
|
+
} else if (pattern instanceof RegExp) {
|
|
1221
|
+
transpile2.push(pattern);
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
return transpile2;
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1212
1227
|
const SourcemapPreserverPlugin = (nuxt) => {
|
|
1213
1228
|
let outputDir;
|
|
1214
1229
|
const ids = /* @__PURE__ */ new Set();
|
|
@@ -1288,48 +1303,67 @@ function VueFeatureFlagsPlugin(nuxt) {
|
|
|
1288
1303
|
};
|
|
1289
1304
|
}
|
|
1290
1305
|
|
|
1291
|
-
function
|
|
1292
|
-
const
|
|
1293
|
-
const
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
transpile2.push(pattern);
|
|
1305
|
-
}
|
|
1306
|
-
}
|
|
1307
|
-
return transpile2;
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
|
-
function ssr(nuxt) {
|
|
1311
|
-
return {
|
|
1312
|
-
external: [
|
|
1313
|
-
"nitro/runtime",
|
|
1314
|
-
// TODO: remove in v5
|
|
1315
|
-
"#internal/nitro",
|
|
1316
|
-
"#internal/nitro/utils"
|
|
1306
|
+
async function buildServer(nuxt, ctx) {
|
|
1307
|
+
const serverEntry = nuxt.options.ssr ? ctx.entry : await resolvePath(resolve(nuxt.options.appDir, "entry-spa"));
|
|
1308
|
+
const serverConfig = vite.mergeConfig(ctx.config, vite.mergeConfig({
|
|
1309
|
+
configFile: false,
|
|
1310
|
+
base: nuxt.options.dev ? joinURL(nuxt.options.app.baseURL.replace(/^\.\//, "/") || "/", nuxt.options.app.buildAssetsDir) : void 0,
|
|
1311
|
+
css: {
|
|
1312
|
+
devSourcemap: !!nuxt.options.sourcemap.server
|
|
1313
|
+
},
|
|
1314
|
+
plugins: [
|
|
1315
|
+
VueFeatureFlagsPlugin(nuxt),
|
|
1316
|
+
// tell rollup's nitro build about the original sources of the generated vite server build
|
|
1317
|
+
SourcemapPreserverPlugin(nuxt),
|
|
1318
|
+
VitePluginCheckerPlugin(nuxt, "ssr")
|
|
1317
1319
|
],
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
"
|
|
1321
|
-
"
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1320
|
+
define: {
|
|
1321
|
+
"process.server": true,
|
|
1322
|
+
"process.client": false,
|
|
1323
|
+
"process.browser": false,
|
|
1324
|
+
"import.meta.server": true,
|
|
1325
|
+
"import.meta.client": false,
|
|
1326
|
+
"import.meta.browser": false,
|
|
1327
|
+
"window": "undefined",
|
|
1328
|
+
"document": "undefined",
|
|
1329
|
+
"navigator": "undefined",
|
|
1330
|
+
"location": "undefined",
|
|
1331
|
+
"XMLHttpRequest": "undefined"
|
|
1332
|
+
},
|
|
1333
|
+
optimizeDeps: {
|
|
1334
|
+
noDiscovery: true,
|
|
1335
|
+
include: void 0
|
|
1336
|
+
},
|
|
1337
|
+
environments: {
|
|
1338
|
+
ssr: {
|
|
1339
|
+
resolve: {
|
|
1340
|
+
conditions: nuxt._nitro?.options.exportConditions
|
|
1341
|
+
}
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
resolve: {
|
|
1345
|
+
conditions: nuxt._nitro?.options.exportConditions
|
|
1346
|
+
},
|
|
1347
|
+
ssr: {
|
|
1348
|
+
external: [
|
|
1349
|
+
"nitro/runtime",
|
|
1350
|
+
// TODO: remove in v5
|
|
1351
|
+
"#internal/nitro",
|
|
1352
|
+
"#internal/nitro/utils"
|
|
1353
|
+
],
|
|
1354
|
+
noExternal: [
|
|
1355
|
+
...transpile({ isServer: true, isDev: nuxt.options.dev }),
|
|
1356
|
+
"/__vue-jsx",
|
|
1357
|
+
"#app",
|
|
1358
|
+
/^nuxt(\/|$)/,
|
|
1359
|
+
/(nuxt|nuxt3|nuxt-nightly)\/(dist|src|app)/
|
|
1360
|
+
]
|
|
1361
|
+
},
|
|
1362
|
+
cacheDir: resolve(nuxt.options.rootDir, ctx.config.cacheDir ?? "node_modules/.cache/vite", "server"),
|
|
1329
1363
|
build: {
|
|
1330
1364
|
// we'll display this in nitro build output
|
|
1331
1365
|
reportCompressedSize: false,
|
|
1332
|
-
sourcemap: nuxt.options.sourcemap.server ?
|
|
1366
|
+
sourcemap: nuxt.options.sourcemap.server ? ctx.config.build?.sourcemap ?? nuxt.options.sourcemap.server : false,
|
|
1333
1367
|
outDir: resolve(nuxt.options.buildDir, "dist/server"),
|
|
1334
1368
|
ssr: true,
|
|
1335
1369
|
rollupOptions: {
|
|
@@ -1348,6 +1382,7 @@ function ssrEnvironment(nuxt, serverEntry) {
|
|
|
1348
1382
|
output: {
|
|
1349
1383
|
entryFileNames: "[name].mjs",
|
|
1350
1384
|
format: "module",
|
|
1385
|
+
// @ts-expect-error non-public property
|
|
1351
1386
|
...vite.rolldownVersion ? {} : {
|
|
1352
1387
|
generatedCode: {
|
|
1353
1388
|
symbols: true,
|
|
@@ -1366,52 +1401,6 @@ function ssrEnvironment(nuxt, serverEntry) {
|
|
|
1366
1401
|
}
|
|
1367
1402
|
}
|
|
1368
1403
|
},
|
|
1369
|
-
define: {
|
|
1370
|
-
"process.server": true,
|
|
1371
|
-
"process.client": false,
|
|
1372
|
-
"process.browser": false,
|
|
1373
|
-
"import.meta.server": true,
|
|
1374
|
-
"import.meta.client": false,
|
|
1375
|
-
"import.meta.browser": false,
|
|
1376
|
-
"window": "undefined",
|
|
1377
|
-
"document": "undefined",
|
|
1378
|
-
"navigator": "undefined",
|
|
1379
|
-
"location": "undefined",
|
|
1380
|
-
"XMLHttpRequest": "undefined"
|
|
1381
|
-
},
|
|
1382
|
-
resolve: {
|
|
1383
|
-
conditions: useNitro().options.exportConditions
|
|
1384
|
-
}
|
|
1385
|
-
};
|
|
1386
|
-
}
|
|
1387
|
-
|
|
1388
|
-
async function buildServer(nuxt, ctx) {
|
|
1389
|
-
const serverEntry = nuxt.options.ssr ? ctx.entry : await resolvePath(resolve(nuxt.options.appDir, "entry-spa"));
|
|
1390
|
-
const serverConfig = vite.mergeConfig(ctx.config, vite.mergeConfig({
|
|
1391
|
-
configFile: false,
|
|
1392
|
-
base: nuxt.options.dev ? joinURL(nuxt.options.app.baseURL.replace(/^\.\//, "/") || "/", nuxt.options.app.buildAssetsDir) : void 0,
|
|
1393
|
-
css: {
|
|
1394
|
-
devSourcemap: !!nuxt.options.sourcemap.server
|
|
1395
|
-
},
|
|
1396
|
-
plugins: [
|
|
1397
|
-
VueFeatureFlagsPlugin(nuxt),
|
|
1398
|
-
// tell rollup's nitro build about the original sources of the generated vite server build
|
|
1399
|
-
SourcemapPreserverPlugin(nuxt),
|
|
1400
|
-
VitePluginCheckerPlugin(nuxt, "ssr")
|
|
1401
|
-
],
|
|
1402
|
-
optimizeDeps: {
|
|
1403
|
-
noDiscovery: true,
|
|
1404
|
-
include: void 0
|
|
1405
|
-
},
|
|
1406
|
-
environments: {
|
|
1407
|
-
ssr: {
|
|
1408
|
-
resolve: {
|
|
1409
|
-
conditions: nuxt._nitro?.options.exportConditions
|
|
1410
|
-
}
|
|
1411
|
-
}
|
|
1412
|
-
},
|
|
1413
|
-
ssr: ssr(nuxt),
|
|
1414
|
-
cacheDir: resolve(nuxt.options.rootDir, ctx.config.cacheDir ?? "node_modules/.cache/vite", "server"),
|
|
1415
1404
|
server: {
|
|
1416
1405
|
warmup: {
|
|
1417
1406
|
ssrFiles: [serverEntry]
|
|
@@ -1419,8 +1408,7 @@ async function buildServer(nuxt, ctx) {
|
|
|
1419
1408
|
// https://github.com/vitest-dev/vitest/issues/229#issuecomment-1002685027
|
|
1420
1409
|
preTransformRequests: false,
|
|
1421
1410
|
hmr: false
|
|
1422
|
-
}
|
|
1423
|
-
...ssrEnvironment(nuxt, serverEntry)
|
|
1411
|
+
}
|
|
1424
1412
|
}, nuxt.options.vite.$server || {}));
|
|
1425
1413
|
serverConfig.customLogger = createViteLogger(serverConfig, { hideOutput: !nuxt.options.dev });
|
|
1426
1414
|
await nuxt.callHook("vite:extendConfig", serverConfig, { isClient: false, isServer: true });
|
|
@@ -1584,7 +1572,7 @@ function SSRStylesPlugin(nuxt) {
|
|
|
1584
1572
|
return {
|
|
1585
1573
|
name: "ssr-styles",
|
|
1586
1574
|
configResolved(config) {
|
|
1587
|
-
if (!config.build.ssr
|
|
1575
|
+
if (!config.build.ssr) {
|
|
1588
1576
|
entry = resolveClientEntry(config);
|
|
1589
1577
|
}
|
|
1590
1578
|
},
|
|
@@ -1940,72 +1928,6 @@ function NodeCompatAliasPlugin() {
|
|
|
1940
1928
|
};
|
|
1941
1929
|
}
|
|
1942
1930
|
|
|
1943
|
-
function ClientManifestPlugin(nuxt) {
|
|
1944
|
-
let clientEntry;
|
|
1945
|
-
let key;
|
|
1946
|
-
let disableCssCodeSplit;
|
|
1947
|
-
return {
|
|
1948
|
-
name: "nuxt:client-manifest",
|
|
1949
|
-
// needs to run after server build (or after client build if there is no server build)
|
|
1950
|
-
applyToEnvironment: (environment) => environment.name === "ssr",
|
|
1951
|
-
configResolved(config) {
|
|
1952
|
-
clientEntry = resolveClientEntry(config);
|
|
1953
|
-
key = relative(config.root, clientEntry);
|
|
1954
|
-
disableCssCodeSplit = config.build?.cssCodeSplit === false;
|
|
1955
|
-
},
|
|
1956
|
-
async closeBundle() {
|
|
1957
|
-
const devClientManifest = {
|
|
1958
|
-
"@vite/client": {
|
|
1959
|
-
isEntry: true,
|
|
1960
|
-
file: "@vite/client",
|
|
1961
|
-
css: [],
|
|
1962
|
-
module: true,
|
|
1963
|
-
resourceType: "script"
|
|
1964
|
-
},
|
|
1965
|
-
...nuxt.options.features.noScripts === "all" ? {} : {
|
|
1966
|
-
[clientEntry]: {
|
|
1967
|
-
isEntry: true,
|
|
1968
|
-
file: clientEntry,
|
|
1969
|
-
module: true,
|
|
1970
|
-
resourceType: "script"
|
|
1971
|
-
}
|
|
1972
|
-
}
|
|
1973
|
-
};
|
|
1974
|
-
const clientDist = resolve(nuxt.options.buildDir, "dist/client");
|
|
1975
|
-
const serverDist = resolve(nuxt.options.buildDir, "dist/server");
|
|
1976
|
-
const manifestFile = resolve(clientDist, "manifest.json");
|
|
1977
|
-
const clientManifest = nuxt.options.dev ? devClientManifest : JSON.parse(readFileSync(manifestFile, "utf-8"));
|
|
1978
|
-
const manifestEntries = Object.values(clientManifest);
|
|
1979
|
-
const buildAssetsDir = withTrailingSlash(withoutLeadingSlash(nuxt.options.app.buildAssetsDir));
|
|
1980
|
-
const BASE_RE = new RegExp(`^${escapeStringRegexp(buildAssetsDir)}`);
|
|
1981
|
-
for (const entry of manifestEntries) {
|
|
1982
|
-
entry.file &&= entry.file.replace(BASE_RE, "");
|
|
1983
|
-
for (const item of ["css", "assets"]) {
|
|
1984
|
-
entry[item] &&= entry[item].map((i) => i.replace(BASE_RE, ""));
|
|
1985
|
-
}
|
|
1986
|
-
}
|
|
1987
|
-
await mkdir(serverDist, { recursive: true });
|
|
1988
|
-
if (disableCssCodeSplit) {
|
|
1989
|
-
for (const entry of manifestEntries) {
|
|
1990
|
-
if (entry.file?.endsWith(".css")) {
|
|
1991
|
-
clientManifest[key].css ||= [];
|
|
1992
|
-
clientManifest[key].css.push(entry.file);
|
|
1993
|
-
break;
|
|
1994
|
-
}
|
|
1995
|
-
}
|
|
1996
|
-
}
|
|
1997
|
-
const manifest = normalizeViteManifest(clientManifest);
|
|
1998
|
-
await nuxt.callHook("build:manifest", manifest);
|
|
1999
|
-
const precomputed = precomputeDependencies(manifest);
|
|
2000
|
-
await writeFile(resolve(serverDist, "client.manifest.mjs"), "export default " + serialize(manifest), "utf8");
|
|
2001
|
-
await writeFile(resolve(serverDist, "client.precomputed.mjs"), "export default " + serialize(precomputed), "utf8");
|
|
2002
|
-
if (!nuxt.options.dev) {
|
|
2003
|
-
await rm(manifestFile, { force: true });
|
|
2004
|
-
}
|
|
2005
|
-
}
|
|
2006
|
-
};
|
|
2007
|
-
}
|
|
2008
|
-
|
|
2009
1931
|
const bundle = async (nuxt) => {
|
|
2010
1932
|
const useAsyncEntry = nuxt.options.experimental.asyncEntry || nuxt.options.dev;
|
|
2011
1933
|
const entry = await resolvePath(resolve(nuxt.options.appDir, useAsyncEntry ? "entry.async" : "entry"));
|
|
@@ -2039,188 +1961,94 @@ const bundle = async (nuxt) => {
|
|
|
2039
1961
|
const mockEmpty = resolveModulePath("mocked-exports/empty", { from: import.meta.url });
|
|
2040
1962
|
const helper = nuxt.options.nitro.imports !== false ? "" : "globalThis.";
|
|
2041
1963
|
const isIgnored = createIsIgnored(nuxt);
|
|
2042
|
-
const
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
}
|
|
2052
|
-
if (!ssr2) {
|
|
2053
|
-
if (type === "asset") {
|
|
1964
|
+
const ctx = {
|
|
1965
|
+
nuxt,
|
|
1966
|
+
entry,
|
|
1967
|
+
config: vite.mergeConfig(
|
|
1968
|
+
{
|
|
1969
|
+
logLevel: logLevelMap[nuxt.options.logLevel] ?? logLevelMap.info,
|
|
1970
|
+
experimental: {
|
|
1971
|
+
renderBuiltUrl: (filename2, { type, hostType, ssr }) => {
|
|
1972
|
+
if (hostType !== "js") {
|
|
2054
1973
|
return { relative: true };
|
|
2055
1974
|
}
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
builder: {
|
|
2069
|
-
async buildApp(builder) {
|
|
2070
|
-
const environments = Object.values(builder.environments);
|
|
2071
|
-
for (const environment of environments) {
|
|
2072
|
-
logger.restoreAll();
|
|
2073
|
-
await builder.build(environment);
|
|
2074
|
-
logger.wrapAll();
|
|
2075
|
-
await nuxt.callHook("vite:compiled");
|
|
1975
|
+
if (!ssr) {
|
|
1976
|
+
if (type === "asset") {
|
|
1977
|
+
return { relative: true };
|
|
1978
|
+
}
|
|
1979
|
+
return { runtime: `globalThis.__publicAssetsURL(${JSON.stringify(filename2)})` };
|
|
1980
|
+
}
|
|
1981
|
+
if (type === "public") {
|
|
1982
|
+
return { runtime: `${helper}__publicAssetsURL(${JSON.stringify(filename2)})` };
|
|
1983
|
+
}
|
|
1984
|
+
if (type === "asset") {
|
|
1985
|
+
const relativeFilename = filename2.replace(withTrailingSlash(withoutLeadingSlash(nuxt.options.app.buildAssetsDir)), "");
|
|
1986
|
+
return { runtime: `${helper}__buildAssetsURL(${JSON.stringify(relativeFilename)})` };
|
|
2076
1987
|
}
|
|
2077
1988
|
}
|
|
2078
1989
|
},
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
1990
|
+
resolve: {
|
|
1991
|
+
alias: {
|
|
1992
|
+
[basename(nuxt.options.dir.assets)]: resolve(nuxt.options.srcDir, nuxt.options.dir.assets),
|
|
1993
|
+
...nuxt.options.alias,
|
|
1994
|
+
"#app": nuxt.options.appDir,
|
|
1995
|
+
"web-streams-polyfill/ponyfill/es2018": mockEmpty,
|
|
1996
|
+
// Cannot destructure property 'AbortController' of ..
|
|
1997
|
+
"abort-controller": mockEmpty
|
|
2087
1998
|
},
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
warmup: [serverEntry]
|
|
2092
|
-
},
|
|
2093
|
-
...ssrEnvironment(nuxt, serverEntry)
|
|
2094
|
-
}
|
|
1999
|
+
dedupe: [
|
|
2000
|
+
"vue"
|
|
2001
|
+
]
|
|
2095
2002
|
},
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
[basename(nuxt.options.dir.assets)]: resolve(nuxt.options.srcDir, nuxt.options.dir.assets),
|
|
2101
|
-
...nuxt.options.alias,
|
|
2102
|
-
"#app": nuxt.options.appDir,
|
|
2103
|
-
"web-streams-polyfill/ponyfill/es2018": mockEmpty,
|
|
2104
|
-
// Cannot destructure property 'AbortController' of ..
|
|
2105
|
-
"abort-controller": mockEmpty
|
|
2003
|
+
css: await resolveCSSOptions(nuxt),
|
|
2004
|
+
define: {
|
|
2005
|
+
__NUXT_VERSION__: JSON.stringify(nuxt._version),
|
|
2006
|
+
__NUXT_ASYNC_CONTEXT__: nuxt.options.experimental.asyncContext
|
|
2106
2007
|
},
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
},
|
|
2124
|
-
sanitizeFileName: sanitizeFilePath,
|
|
2125
|
-
// https://github.com/vitejs/vite/tree/main/packages/vite/src/node/build.ts#L464-L478
|
|
2126
|
-
assetFileNames: nuxt.options.dev ? void 0 : (chunk) => withoutLeadingSlash(join(nuxt.options.app.buildAssetsDir, `${sanitizeFilePath(filename$1(chunk.names[0]))}.[hash].[ext]`))
|
|
2008
|
+
build: {
|
|
2009
|
+
copyPublicDir: false,
|
|
2010
|
+
rollupOptions: {
|
|
2011
|
+
output: {
|
|
2012
|
+
sourcemapIgnoreList: (relativeSourcePath) => {
|
|
2013
|
+
return relativeSourcePath.includes("node_modules") || relativeSourcePath.includes(nuxt.options.buildDir);
|
|
2014
|
+
},
|
|
2015
|
+
sanitizeFileName: sanitizeFilePath,
|
|
2016
|
+
// https://github.com/vitejs/vite/tree/main/packages/vite/src/node/build.ts#L464-L478
|
|
2017
|
+
assetFileNames: nuxt.options.dev ? void 0 : (chunk) => withoutLeadingSlash(join(nuxt.options.app.buildAssetsDir, `${sanitizeFilePath(filename$1(chunk.names[0]))}.[hash].[ext]`))
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
2020
|
+
// @ts-expect-error non-public property
|
|
2021
|
+
watch: vite.rolldownVersion ? { exclude: [...nuxt.options.ignore, /[\\/]node_modules[\\/]/] } : {
|
|
2022
|
+
chokidar: { ...nuxt.options.watchers.chokidar, ignored: [isIgnored, /[\\/]node_modules[\\/]/] },
|
|
2023
|
+
exclude: nuxt.options.ignore
|
|
2127
2024
|
}
|
|
2128
2025
|
},
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
},
|
|
2135
|
-
plugins: [
|
|
2136
|
-
...nuxt.options.experimental.viteEnvironmentApi ? [
|
|
2137
|
-
vuePlugin(viteConfig.vue),
|
|
2138
|
-
viteJsxPlugin(viteConfig.vueJsx),
|
|
2139
|
-
ViteNodePlugin(nuxt),
|
|
2140
|
-
ClientManifestPlugin(nuxt),
|
|
2141
|
-
DevServerPlugin(nuxt)
|
|
2142
|
-
] : [],
|
|
2143
|
-
// add resolver for files in public assets directories
|
|
2144
|
-
PublicDirsPlugin({
|
|
2145
|
-
dev: nuxt.options.dev,
|
|
2146
|
-
baseURL: nuxt.options.app.baseURL
|
|
2147
|
-
}),
|
|
2148
|
-
ReplacePlugin(),
|
|
2149
|
-
LayerDepOptimizePlugin(nuxt),
|
|
2150
|
-
SSRStylesPlugin(nuxt),
|
|
2151
|
-
EnvironmentsPlugin(nuxt),
|
|
2152
|
-
...nuxt.options.experimental.viteEnvironmentApi ? [
|
|
2153
|
-
// Add type-checking
|
|
2154
|
-
VitePluginCheckerPlugin(nuxt),
|
|
2155
|
-
// server-only plugins
|
|
2156
|
-
VueFeatureFlagsPlugin(nuxt),
|
|
2157
|
-
// tell rollup's nitro build about the original sources of the generated vite server build
|
|
2158
|
-
SourcemapPreserverPlugin(nuxt),
|
|
2159
|
-
// client-only plugins
|
|
2160
|
-
DevStyleSSRPlugin({
|
|
2161
|
-
srcDir: nuxt.options.srcDir,
|
|
2162
|
-
buildAssetsURL: joinURL(nuxt.options.app.baseURL, nuxt.options.app.buildAssetsDir)
|
|
2026
|
+
plugins: [
|
|
2027
|
+
// add resolver for files in public assets directories
|
|
2028
|
+
PublicDirsPlugin({
|
|
2029
|
+
dev: nuxt.options.dev,
|
|
2030
|
+
baseURL: nuxt.options.app.baseURL
|
|
2163
2031
|
}),
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
server: {
|
|
2175
|
-
middlewareMode: true,
|
|
2176
|
-
watch: { ...nuxt.options.watchers.chokidar, ignored: [isIgnored, /[\\/]node_modules[\\/]/] },
|
|
2177
|
-
fs: {
|
|
2178
|
-
allow: [...new Set(allowDirs)]
|
|
2032
|
+
ReplacePlugin(),
|
|
2033
|
+
LayerDepOptimizePlugin(nuxt),
|
|
2034
|
+
SSRStylesPlugin(nuxt),
|
|
2035
|
+
EnvironmentsPlugin(nuxt)
|
|
2036
|
+
],
|
|
2037
|
+
server: {
|
|
2038
|
+
watch: { ...nuxt.options.watchers.chokidar, ignored: [isIgnored, /[\\/]node_modules[\\/]/] },
|
|
2039
|
+
fs: {
|
|
2040
|
+
allow: [...new Set(allowDirs)]
|
|
2041
|
+
}
|
|
2179
2042
|
}
|
|
2180
|
-
}
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
environments: {
|
|
2185
|
-
ssr: $server,
|
|
2186
|
-
client: $client
|
|
2187
|
-
}
|
|
2188
|
-
} : viteConfig
|
|
2189
|
-
);
|
|
2043
|
+
},
|
|
2044
|
+
viteConfig
|
|
2045
|
+
)
|
|
2046
|
+
};
|
|
2190
2047
|
if (!nuxt.options.dev) {
|
|
2191
|
-
config.server.watch = void 0;
|
|
2192
|
-
config.build.watch = void 0;
|
|
2048
|
+
ctx.config.server.watch = void 0;
|
|
2049
|
+
ctx.config.build.watch = void 0;
|
|
2193
2050
|
}
|
|
2194
|
-
const ctx = { nuxt, entry, config };
|
|
2195
2051
|
await nuxt.callHook("vite:extend", ctx);
|
|
2196
|
-
if (nuxt.options.experimental.viteEnvironmentApi) {
|
|
2197
|
-
await handleEnvironments(nuxt, config);
|
|
2198
|
-
} else {
|
|
2199
|
-
await handleSerialBuilds(nuxt, ctx);
|
|
2200
|
-
}
|
|
2201
|
-
};
|
|
2202
|
-
async function handleEnvironments(nuxt, config) {
|
|
2203
|
-
config.customLogger = createViteLogger(config);
|
|
2204
|
-
config.configFile = false;
|
|
2205
|
-
for (const environment of ["client", "ssr"]) {
|
|
2206
|
-
const environments = { [environment]: config.environments[environment] };
|
|
2207
|
-
const strippedConfig = { ...config, environments };
|
|
2208
|
-
const ctx = { isServer: environment === "ssr", isClient: environment === "client" };
|
|
2209
|
-
await nuxt.hooks.callHook("vite:extendConfig", strippedConfig, ctx);
|
|
2210
|
-
await nuxt.hooks.callHook("vite:configResolved", strippedConfig, ctx);
|
|
2211
|
-
}
|
|
2212
|
-
if (!nuxt.options.dev) {
|
|
2213
|
-
const builder = await createBuilder(config);
|
|
2214
|
-
await builder.buildApp();
|
|
2215
|
-
return;
|
|
2216
|
-
}
|
|
2217
|
-
await withLogs(async () => {
|
|
2218
|
-
const server = await createServer(config);
|
|
2219
|
-
await server.environments.ssr.pluginContainer.buildStart({});
|
|
2220
|
-
}, "Vite dev server built");
|
|
2221
|
-
await writeDevServer(nuxt);
|
|
2222
|
-
}
|
|
2223
|
-
async function handleSerialBuilds(nuxt, ctx) {
|
|
2224
2052
|
nuxt.hook("vite:serverCreated", (server, env) => {
|
|
2225
2053
|
if (nuxt.options.vite.warmupEntry !== false) {
|
|
2226
2054
|
useNitro().hooks.hookOnce("compiled", () => {
|
|
@@ -2231,7 +2059,7 @@ async function handleSerialBuilds(nuxt, ctx) {
|
|
|
2231
2059
|
});
|
|
2232
2060
|
await withLogs(() => buildClient(nuxt, ctx), "Vite client built", nuxt.options.dev);
|
|
2233
2061
|
await withLogs(() => buildServer(nuxt, ctx), "Vite server built", nuxt.options.dev);
|
|
2234
|
-
}
|
|
2062
|
+
};
|
|
2235
2063
|
async function withLogs(fn, message, enabled = true) {
|
|
2236
2064
|
if (!enabled) {
|
|
2237
2065
|
return fn();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/vite-builder-nightly",
|
|
3
|
-
"version": "4.2.0-
|
|
3
|
+
"version": "4.2.0-29344722.285eac31",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.2.0-
|
|
24
|
+
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.2.0-29344722.285eac31",
|
|
25
25
|
"nitropack": "2.12.7",
|
|
26
26
|
"rolldown": "1.0.0-beta.42",
|
|
27
27
|
"rollup": "4.52.4",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"vue": "3.5.22"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.2.0-
|
|
32
|
+
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.2.0-29344722.285eac31",
|
|
33
33
|
"@rollup/plugin-replace": "^6.0.2",
|
|
34
34
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
35
35
|
"@vitejs/plugin-vue-jsx": "^5.1.1",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"vue-bundle-renderer": "^2.2.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
|
-
"nuxt": "npm:nuxt-nightly@4.2.0-
|
|
64
|
+
"nuxt": "npm:nuxt-nightly@4.2.0-29344722.285eac31",
|
|
65
65
|
"rolldown": "^1.0.0-beta.38",
|
|
66
66
|
"vue": "^3.3.4"
|
|
67
67
|
},
|