vite 5.4.14 → 5.4.16
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.
@@ -16865,10 +16865,10 @@ function removeImportQuery(url) {
|
|
16865
16865
|
function removeDirectQuery(url) {
|
16866
16866
|
return url.replace(directRequestRE$1, "$1").replace(trailingSeparatorRE, "");
|
16867
16867
|
}
|
16868
|
-
const urlRE = /(\?|&)url(?:&|$)/;
|
16869
|
-
const rawRE = /(\?|&)raw(?:&|$)/;
|
16868
|
+
const urlRE$1 = /(\?|&)url(?:&|$)/;
|
16869
|
+
const rawRE$1 = /(\?|&)raw(?:&|$)/;
|
16870
16870
|
function removeUrlQuery(url) {
|
16871
|
-
return url.replace(urlRE, "$1").replace(trailingSeparatorRE, "");
|
16871
|
+
return url.replace(urlRE$1, "$1").replace(trailingSeparatorRE, "");
|
16872
16872
|
}
|
16873
16873
|
const replacePercentageRE = /%/g;
|
16874
16874
|
function injectQuery(url, queryToInject) {
|
@@ -20302,7 +20302,7 @@ function assetPlugin(config) {
|
|
20302
20302
|
moduleGraph = server.moduleGraph;
|
20303
20303
|
},
|
20304
20304
|
resolveId(id) {
|
20305
|
-
if (!config.assetsInclude(cleanUrl(id)) && !urlRE.test(id)) {
|
20305
|
+
if (!config.assetsInclude(cleanUrl(id)) && !urlRE$1.test(id)) {
|
20306
20306
|
return;
|
20307
20307
|
}
|
20308
20308
|
const publicFile = checkPublicFile(id, config);
|
@@ -20314,14 +20314,14 @@ function assetPlugin(config) {
|
|
20314
20314
|
if (id[0] === "\0") {
|
20315
20315
|
return;
|
20316
20316
|
}
|
20317
|
-
if (rawRE.test(id)) {
|
20317
|
+
if (rawRE$1.test(id)) {
|
20318
20318
|
const file = checkPublicFile(id, config) || cleanUrl(id);
|
20319
20319
|
this.addWatchFile(file);
|
20320
20320
|
return `export default ${JSON.stringify(
|
20321
20321
|
await fsp.readFile(file, "utf-8")
|
20322
20322
|
)}`;
|
20323
20323
|
}
|
20324
|
-
if (!urlRE.test(id) && !config.assetsInclude(cleanUrl(id))) {
|
20324
|
+
if (!urlRE$1.test(id) && !config.assetsInclude(cleanUrl(id))) {
|
20325
20325
|
return;
|
20326
20326
|
}
|
20327
20327
|
id = removeUrlQuery(id);
|
@@ -36062,7 +36062,7 @@ const directRequestRE = /[?&]direct\b/;
|
|
36062
36062
|
const htmlProxyRE = /[?&]html-proxy\b/;
|
36063
36063
|
const htmlProxyIndexRE = /&index=(\d+)/;
|
36064
36064
|
const commonjsProxyRE = /\?commonjs-proxy/;
|
36065
|
-
const inlineRE$
|
36065
|
+
const inlineRE$2 = /[?&]inline\b/;
|
36066
36066
|
const inlineCSSRE = /[?&]inline-css\b/;
|
36067
36067
|
const styleAttrRE = /[?&]style-attr\b/;
|
36068
36068
|
const functionCallRE = /^[A-Z_][\w-]*\(/i;
|
@@ -36111,7 +36111,7 @@ function cssPlugin(config) {
|
|
36111
36111
|
},
|
36112
36112
|
async load(id) {
|
36113
36113
|
if (!isCSSRequest(id)) return;
|
36114
|
-
if (urlRE.test(id)) {
|
36114
|
+
if (urlRE$1.test(id)) {
|
36115
36115
|
if (isModuleCSSRequest(id)) {
|
36116
36116
|
throw new Error(
|
36117
36117
|
`?url is not supported with CSS modules. (tried to import ${JSON.stringify(
|
@@ -36245,7 +36245,7 @@ function cssPostPlugin(config) {
|
|
36245
36245
|
);
|
36246
36246
|
return `export default ''`;
|
36247
36247
|
}
|
36248
|
-
const inlined = inlineRE$
|
36248
|
+
const inlined = inlineRE$2.test(id);
|
36249
36249
|
const modules = cssModulesCache.get(config).get(id);
|
36250
36250
|
const modulesCode = modules && !inlined && dataToEsm(modules, { namedExports: true, preferConst: true });
|
36251
36251
|
if (config.command === "serve") {
|
@@ -36620,7 +36620,7 @@ function cssAnalysisPlugin(config) {
|
|
36620
36620
|
const { moduleGraph } = server;
|
36621
36621
|
const thisModule = moduleGraph.getModuleById(id);
|
36622
36622
|
if (thisModule) {
|
36623
|
-
const isSelfAccepting = !cssModulesCache.get(config)?.get(id) && !inlineRE$
|
36623
|
+
const isSelfAccepting = !cssModulesCache.get(config)?.get(id) && !inlineRE$2.test(id) && !htmlProxyRE.test(id);
|
36624
36624
|
const pluginImports = this._addedImports;
|
36625
36625
|
if (pluginImports) {
|
36626
36626
|
const depModules = /* @__PURE__ */ new Set();
|
@@ -36991,8 +36991,8 @@ function createCachedImport(imp) {
|
|
36991
36991
|
return cached;
|
36992
36992
|
};
|
36993
36993
|
}
|
36994
|
-
const importPostcssImport = createCachedImport(() => import('./dep-
|
36995
|
-
const importPostcssModules = createCachedImport(() => import('./dep-
|
36994
|
+
const importPostcssImport = createCachedImport(() => import('./dep-U2-FgckH.js').then(function (n) { return n.i; }));
|
36995
|
+
const importPostcssModules = createCachedImport(() => import('./dep-DN5F0dfg.js').then(function (n) { return n.i; }));
|
36996
36996
|
const importPostcss = createCachedImport(() => import('postcss'));
|
36997
36997
|
const preprocessorWorkerControllerCache = /* @__PURE__ */ new WeakMap();
|
36998
36998
|
let alwaysFakeWorkerWorkerControllerCache;
|
@@ -47598,7 +47598,7 @@ const wasmFallbackPlugin = () => {
|
|
47598
47598
|
|
47599
47599
|
const workerOrSharedWorkerRE = /(?:\?|&)(worker|sharedworker)(?:&|$)/;
|
47600
47600
|
const workerFileRE = /(?:\?|&)worker_file&type=(\w+)(?:&|$)/;
|
47601
|
-
const inlineRE = /[?&]inline\b/;
|
47601
|
+
const inlineRE$1 = /[?&]inline\b/;
|
47602
47602
|
const WORKER_FILE_ID = "worker_file";
|
47603
47603
|
const workerCache = /* @__PURE__ */ new WeakMap();
|
47604
47604
|
function saveEmitWorkerAsset(config, asset) {
|
@@ -47796,7 +47796,7 @@ function webWorkerPlugin(config) {
|
|
47796
47796
|
if (isBuild) {
|
47797
47797
|
if (isWorker && config.bundleChain.at(-1) === cleanUrl(id)) {
|
47798
47798
|
urlCode = "self.location.href";
|
47799
|
-
} else if (inlineRE.test(id)) {
|
47799
|
+
} else if (inlineRE$1.test(id)) {
|
47800
47800
|
const chunk = await bundleWorkerEntry(config, id);
|
47801
47801
|
const encodedJs = `const encodedJs = "${Buffer.from(
|
47802
47802
|
chunk.code
|
@@ -47851,7 +47851,7 @@ function webWorkerPlugin(config) {
|
|
47851
47851
|
url = injectQuery(url, `${WORKER_FILE_ID}&type=${workerType}`);
|
47852
47852
|
urlCode = JSON.stringify(url);
|
47853
47853
|
}
|
47854
|
-
if (urlRE.test(id)) {
|
47854
|
+
if (urlRE$1.test(id)) {
|
47855
47855
|
return {
|
47856
47856
|
code: `export default ${urlCode}`,
|
47857
47857
|
map: { mappings: "" }
|
@@ -48488,7 +48488,7 @@ function parseDynamicImportPattern(strings) {
|
|
48488
48488
|
let globParams = null;
|
48489
48489
|
if (search) {
|
48490
48490
|
search = "?" + search;
|
48491
|
-
if (workerOrSharedWorkerRE.test(search) || urlRE.test(search) || rawRE.test(search)) {
|
48491
|
+
if (workerOrSharedWorkerRE.test(search) || urlRE$1.test(search) || rawRE$1.test(search)) {
|
48492
48492
|
globParams = {
|
48493
48493
|
query: search,
|
48494
48494
|
import: "*"
|
@@ -51640,7 +51640,7 @@ function servePublicMiddleware(server, publicFiles) {
|
|
51640
51640
|
};
|
51641
51641
|
return function viteServePublicMiddleware(req, res, next) {
|
51642
51642
|
if (publicFiles && !publicFiles.has(toFilePath(req.url)) || isImportRequest(req.url) || isInternalRequest(req.url) || // for `/public-file.js?url` to be transformed
|
51643
|
-
urlRE.test(req.url)) {
|
51643
|
+
urlRE$1.test(req.url)) {
|
51644
51644
|
return next();
|
51645
51645
|
}
|
51646
51646
|
serve(req, res, next);
|
@@ -61928,6 +61928,10 @@ function send(req, res, content, type, options) {
|
|
61928
61928
|
|
61929
61929
|
const debugCache = createDebugger("vite:cache");
|
61930
61930
|
const knownIgnoreList = /* @__PURE__ */ new Set(["/", "/favicon.ico"]);
|
61931
|
+
const trailingQuerySeparatorsRE = /[?&]+$/;
|
61932
|
+
const urlRE = /[?&]url\b/;
|
61933
|
+
const rawRE = /[?&]raw\b/;
|
61934
|
+
const inlineRE = /[?&]inline\b/;
|
61931
61935
|
function cachedTransformMiddleware(server) {
|
61932
61936
|
return function viteCachedTransformMiddleware(req, res, next) {
|
61933
61937
|
const ifNoneMatch = req.headers["if-none-match"];
|
@@ -62011,7 +62015,16 @@ function transformMiddleware(server) {
|
|
62011
62015
|
if (publicDirInRoot && url.startsWith(publicPath)) {
|
62012
62016
|
warnAboutExplicitPublicPathInUrl(url);
|
62013
62017
|
}
|
62014
|
-
|
62018
|
+
const urlWithoutTrailingQuerySeparators = url.replace(
|
62019
|
+
trailingQuerySeparatorsRE,
|
62020
|
+
""
|
62021
|
+
);
|
62022
|
+
if ((rawRE.test(urlWithoutTrailingQuerySeparators) || urlRE.test(urlWithoutTrailingQuerySeparators) || inlineRE.test(urlWithoutTrailingQuerySeparators)) && !ensureServingAccess(
|
62023
|
+
urlWithoutTrailingQuerySeparators,
|
62024
|
+
server,
|
62025
|
+
res,
|
62026
|
+
next
|
62027
|
+
)) {
|
62015
62028
|
return;
|
62016
62029
|
}
|
62017
62030
|
if (isJSRequest(url) || isImportRequest(url) || isCSSRequest(url) || isHTMLProxy(url)) {
|
@@ -64320,7 +64333,7 @@ function importAnalysisPlugin(config) {
|
|
64320
64333
|
if (specifier === clientPublicPath) {
|
64321
64334
|
return;
|
64322
64335
|
}
|
64323
|
-
if (specifier[0] === "/" && !(config.assetsInclude(cleanUrl(specifier)) || urlRE.test(specifier)) && checkPublicFile(specifier, config)) {
|
64336
|
+
if (specifier[0] === "/" && !(config.assetsInclude(cleanUrl(specifier)) || urlRE$1.test(specifier)) && checkPublicFile(specifier, config)) {
|
64324
64337
|
throw new Error(
|
64325
64338
|
`Cannot import non-asset file ${specifier} which is inside /public. JS/CSS files inside /public are copied as-is on build and can only be referenced via <script src> or <link href> in html. If you want to get the URL of that file, use ${injectQuery(
|
64326
64339
|
specifier,
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { C as commonjsGlobal, B as getDefaultExportFromCjs } from './dep-
|
1
|
+
import { C as commonjsGlobal, B as getDefaultExportFromCjs } from './dep-C3azpbs2.js';
|
2
2
|
import require$$0__default from 'fs';
|
3
3
|
import require$$0 from 'postcss';
|
4
4
|
import require$$0$1 from 'path';
|
package/dist/node/cli.js
CHANGED
@@ -2,7 +2,7 @@ import path from 'node:path';
|
|
2
2
|
import fs__default from 'node:fs';
|
3
3
|
import { performance } from 'node:perf_hooks';
|
4
4
|
import { EventEmitter } from 'events';
|
5
|
-
import { A as colors, v as createLogger, r as resolveConfig } from './chunks/dep-
|
5
|
+
import { A as colors, v as createLogger, r as resolveConfig } from './chunks/dep-C3azpbs2.js';
|
6
6
|
import { VERSION } from './constants.js';
|
7
7
|
import 'node:fs/promises';
|
8
8
|
import 'node:url';
|
@@ -731,7 +731,7 @@ cli.command("[root]", "start dev server").alias("serve").alias("dev").option("--
|
|
731
731
|
`[boolean] force the optimizer to ignore the cache and re-bundle`
|
732
732
|
).action(async (root, options) => {
|
733
733
|
filterDuplicateOptions(options);
|
734
|
-
const { createServer } = await import('./chunks/dep-
|
734
|
+
const { createServer } = await import('./chunks/dep-C3azpbs2.js').then(function (n) { return n.E; });
|
735
735
|
try {
|
736
736
|
const server = await createServer({
|
737
737
|
root,
|
@@ -823,7 +823,7 @@ cli.command("build [root]", "build for production").option("--target <target>",
|
|
823
823
|
`[boolean] force empty outDir when it's outside of root`
|
824
824
|
).option("-w, --watch", `[boolean] rebuilds when modules have changed on disk`).action(async (root, options) => {
|
825
825
|
filterDuplicateOptions(options);
|
826
|
-
const { build } = await import('./chunks/dep-
|
826
|
+
const { build } = await import('./chunks/dep-C3azpbs2.js').then(function (n) { return n.F; });
|
827
827
|
const buildOptions = cleanOptions(options);
|
828
828
|
try {
|
829
829
|
await build({
|
@@ -852,7 +852,7 @@ cli.command("optimize [root]", "pre-bundle dependencies").option(
|
|
852
852
|
).action(
|
853
853
|
async (root, options) => {
|
854
854
|
filterDuplicateOptions(options);
|
855
|
-
const { optimizeDeps } = await import('./chunks/dep-
|
855
|
+
const { optimizeDeps } = await import('./chunks/dep-C3azpbs2.js').then(function (n) { return n.D; });
|
856
856
|
try {
|
857
857
|
const config = await resolveConfig(
|
858
858
|
{
|
@@ -878,7 +878,7 @@ ${e.stack}`),
|
|
878
878
|
cli.command("preview [root]", "locally preview production build").option("--host [host]", `[string] specify hostname`, { type: [convertHost] }).option("--port <port>", `[number] specify port`).option("--strictPort", `[boolean] exit if specified port is already in use`).option("--open [path]", `[boolean | string] open browser on startup`).option("--outDir <dir>", `[string] output directory (default: dist)`).action(
|
879
879
|
async (root, options) => {
|
880
880
|
filterDuplicateOptions(options);
|
881
|
-
const { preview } = await import('./chunks/dep-
|
881
|
+
const { preview } = await import('./chunks/dep-C3azpbs2.js').then(function (n) { return n.G; });
|
882
882
|
try {
|
883
883
|
const server = await preview({
|
884
884
|
root,
|
package/dist/node/index.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
export { parseAst, parseAstAsync } from 'rollup/parseAst';
|
2
|
-
import { i as isInNodeModules, a as arraify } from './chunks/dep-
|
3
|
-
export { b as build, g as buildErrorMessage, k as createFilter, v as createLogger, c as createServer, d as defineConfig, h as fetchModule, f as formatPostcssSourceMap, x as isFileServingAllowed, l as loadConfigFromFile, y as loadEnv, j as mergeAlias, m as mergeConfig, n as normalizePath, o as optimizeDeps, e as preprocessCSS, p as preview, r as resolveConfig, z as resolveEnvPrefix, q as rollupVersion, w as searchForWorkspaceRoot, u as send, s as sortUserPlugins, t as transformWithEsbuild } from './chunks/dep-
|
2
|
+
import { i as isInNodeModules, a as arraify } from './chunks/dep-C3azpbs2.js';
|
3
|
+
export { b as build, g as buildErrorMessage, k as createFilter, v as createLogger, c as createServer, d as defineConfig, h as fetchModule, f as formatPostcssSourceMap, x as isFileServingAllowed, l as loadConfigFromFile, y as loadEnv, j as mergeAlias, m as mergeConfig, n as normalizePath, o as optimizeDeps, e as preprocessCSS, p as preview, r as resolveConfig, z as resolveEnvPrefix, q as rollupVersion, w as searchForWorkspaceRoot, u as send, s as sortUserPlugins, t as transformWithEsbuild } from './chunks/dep-C3azpbs2.js';
|
4
4
|
export { VERSION as version } from './constants.js';
|
5
5
|
export { version as esbuildVersion } from 'esbuild';
|
6
6
|
import { existsSync, readFileSync } from 'node:fs';
|