vite 5.4.4 → 5.4.6

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.
@@ -1,4 +1,4 @@
1
- import { B as getDefaultExportFromCjs } from './dep-BEhTnQAI.js';
1
+ import { B as getDefaultExportFromCjs } from './dep-DyBnyoVI.js';
2
2
  import require$$0 from 'path';
3
3
  import require$$0__default from 'fs';
4
4
  import { l as lib } from './dep-IQS-Za7F.js';
@@ -1,4 +1,4 @@
1
- import { C as commonjsGlobal, B as getDefaultExportFromCjs } from './dep-BEhTnQAI.js';
1
+ import { C as commonjsGlobal, B as getDefaultExportFromCjs } from './dep-DyBnyoVI.js';
2
2
  import require$$0__default from 'fs';
3
3
  import require$$0 from 'postcss';
4
4
  import require$$0$1 from 'path';
@@ -36953,8 +36953,8 @@ function createCachedImport(imp) {
36953
36953
  return cached;
36954
36954
  };
36955
36955
  }
36956
- const importPostcssImport = createCachedImport(() => import('./dep-CapdzPRN.js').then(function (n) { return n.i; }));
36957
- const importPostcssModules = createCachedImport(() => import('./dep-B8D18a-R.js').then(function (n) { return n.i; }));
36956
+ const importPostcssImport = createCachedImport(() => import('./dep-CxMW8ntG.js').then(function (n) { return n.i; }));
36957
+ const importPostcssModules = createCachedImport(() => import('./dep-Due-rusG.js').then(function (n) { return n.i; }));
36958
36958
  const importPostcss = createCachedImport(() => import('postcss'));
36959
36959
  const preprocessorWorkerControllerCache = /* @__PURE__ */ new WeakMap();
36960
36960
  let alwaysFakeWorkerWorkerControllerCache;
@@ -61803,6 +61803,9 @@ function transformMiddleware(server) {
61803
61803
  if (publicDirInRoot && url.startsWith(publicPath)) {
61804
61804
  warnAboutExplicitPublicPathInUrl(url);
61805
61805
  }
61806
+ if ((rawRE.test(url) || urlRE.test(url)) && !ensureServingAccess(url, server, res, next)) {
61807
+ return;
61808
+ }
61806
61809
  if (isJSRequest(url) || isImportRequest(url) || isCSSRequest(url) || isHTMLProxy(url)) {
61807
61810
  url = removeImportQuery(url);
61808
61811
  url = unwrapId$1(url);
@@ -64520,19 +64523,22 @@ function preload(baseModule, deps, importerUrl) {
64520
64523
  })
64521
64524
  );
64522
64525
  }
64526
+ function handlePreloadError(err) {
64527
+ const e = new Event("vite:preloadError", {
64528
+ cancelable: true
64529
+ });
64530
+ e.payload = err;
64531
+ window.dispatchEvent(e);
64532
+ if (!e.defaultPrevented) {
64533
+ throw err;
64534
+ }
64535
+ }
64523
64536
  return promise.then((res) => {
64524
64537
  for (const item of res || []) {
64525
64538
  if (item.status !== "rejected") continue;
64526
- const e = new Event("vite:preloadError", {
64527
- cancelable: true
64528
- });
64529
- e.payload = item.reason;
64530
- window.dispatchEvent(e);
64531
- if (!e.defaultPrevented) {
64532
- throw item.reason;
64533
- }
64539
+ handlePreloadError(item.reason);
64534
64540
  }
64535
- return baseModule();
64541
+ return baseModule().catch(handlePreloadError);
64536
64542
  });
64537
64543
  }
64538
64544
  function buildImportAnalysisPlugin(config) {
@@ -65639,7 +65645,7 @@ function escapeId(id) {
65639
65645
  }
65640
65646
  const getResolveUrl = (path2, URL = "URL") => `new ${URL}(${path2}).href`;
65641
65647
  const getRelativeUrlFromDocument = (relativePath, umd = false) => getResolveUrl(
65642
- `'${escapeId(partialEncodeURIPath(relativePath))}', ${umd ? `typeof document === 'undefined' ? location.href : ` : ""}document.currentScript && document.currentScript.src || document.baseURI`
65648
+ `'${escapeId(partialEncodeURIPath(relativePath))}', ${umd ? `typeof document === 'undefined' ? location.href : ` : ""}document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.src || document.baseURI`
65643
65649
  );
65644
65650
  const getFileUrlFromFullPath = (path2) => `require('u' + 'rl').pathToFileURL(${path2}).href`;
65645
65651
  const getFileUrlFromRelativePath = (path2) => getFileUrlFromFullPath(`__dirname + '/${escapeId(path2)}'`);
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-BEhTnQAI.js';
5
+ import { A as colors, v as createLogger, r as resolveConfig } from './chunks/dep-DyBnyoVI.js';
6
6
  import { VERSION } from './constants.js';
7
7
  import 'node:fs/promises';
8
8
  import 'node:url';
@@ -730,7 +730,7 @@ cli.command("[root]", "start dev server").alias("serve").alias("dev").option("--
730
730
  `[boolean] force the optimizer to ignore the cache and re-bundle`
731
731
  ).action(async (root, options) => {
732
732
  filterDuplicateOptions(options);
733
- const { createServer } = await import('./chunks/dep-BEhTnQAI.js').then(function (n) { return n.E; });
733
+ const { createServer } = await import('./chunks/dep-DyBnyoVI.js').then(function (n) { return n.E; });
734
734
  try {
735
735
  const server = await createServer({
736
736
  root,
@@ -822,7 +822,7 @@ cli.command("build [root]", "build for production").option("--target <target>",
822
822
  `[boolean] force empty outDir when it's outside of root`
823
823
  ).option("-w, --watch", `[boolean] rebuilds when modules have changed on disk`).action(async (root, options) => {
824
824
  filterDuplicateOptions(options);
825
- const { build } = await import('./chunks/dep-BEhTnQAI.js').then(function (n) { return n.F; });
825
+ const { build } = await import('./chunks/dep-DyBnyoVI.js').then(function (n) { return n.F; });
826
826
  const buildOptions = cleanOptions(options);
827
827
  try {
828
828
  await build({
@@ -851,7 +851,7 @@ cli.command("optimize [root]", "pre-bundle dependencies").option(
851
851
  ).action(
852
852
  async (root, options) => {
853
853
  filterDuplicateOptions(options);
854
- const { optimizeDeps } = await import('./chunks/dep-BEhTnQAI.js').then(function (n) { return n.D; });
854
+ const { optimizeDeps } = await import('./chunks/dep-DyBnyoVI.js').then(function (n) { return n.D; });
855
855
  try {
856
856
  const config = await resolveConfig(
857
857
  {
@@ -877,7 +877,7 @@ ${e.stack}`),
877
877
  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(
878
878
  async (root, options) => {
879
879
  filterDuplicateOptions(options);
880
- const { preview } = await import('./chunks/dep-BEhTnQAI.js').then(function (n) { return n.G; });
880
+ const { preview } = await import('./chunks/dep-DyBnyoVI.js').then(function (n) { return n.G; });
881
881
  try {
882
882
  const server = await preview({
883
883
  root,
@@ -1,6 +1,6 @@
1
1
  export { parseAst, parseAstAsync } from 'rollup/parseAst';
2
- import { i as isInNodeModules, a as arraify } from './chunks/dep-BEhTnQAI.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-BEhTnQAI.js';
2
+ import { i as isInNodeModules, a as arraify } from './chunks/dep-DyBnyoVI.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-DyBnyoVI.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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite",
3
- "version": "5.4.4",
3
+ "version": "5.4.6",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Evan You",