vite 6.3.5 → 6.3.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 { Q as commonjsGlobal, P as getDefaultExportFromCjs } from './dep-DBxKXgDP.js';
1
+ import { Q as commonjsGlobal, P as getDefaultExportFromCjs } from './dep-Bu492Fnd.js';
2
2
  import require$$0$2 from 'fs';
3
3
  import require$$0 from 'postcss';
4
4
  import require$$0$1 from 'path';
@@ -1,6 +1,6 @@
1
1
  import * as fs$8 from 'node:fs';
2
2
  import fs__default, { promises as promises$1, existsSync as existsSync$1, readFileSync as readFileSync$1 } from 'node:fs';
3
- import path$b, { posix as posix$1, isAbsolute as isAbsolute$1, join as join$1, resolve as resolve$4, normalize, dirname as dirname$2, relative as relative$2, basename as basename$2, extname as extname$1 } from 'node:path';
3
+ import path$b, { posix as posix$1, isAbsolute as isAbsolute$1, join as join$1, resolve as resolve$4, sep as sep$1, normalize, dirname as dirname$2, relative as relative$2, basename as basename$2, extname as extname$1 } from 'node:path';
4
4
  import fsp, { constants as constants$3 } from 'node:fs/promises';
5
5
  import require$$1$1, { fileURLToPath as fileURLToPath$1, URL as URL$3, pathToFileURL as pathToFileURL$1 } from 'node:url';
6
6
  import { promisify as promisify$4, format as format$2, inspect, stripVTControlCharacters } from 'node:util';
@@ -35192,7 +35192,10 @@ function viaLocal(dir, isEtag, uri, extns, shouldServe) {
35192
35192
  let i=0, arr=toAssume(uri, extns);
35193
35193
  let abs, stats, name, headers;
35194
35194
  for (; i < arr.length; i++) {
35195
- abs = normalize(join$1(dir, name=arr[i]));
35195
+ abs = normalize(
35196
+ join$1(dir, name=arr[i])
35197
+ );
35198
+
35196
35199
  if (abs.startsWith(dir) && fs$8.existsSync(abs)) {
35197
35200
  stats = fs$8.statSync(abs);
35198
35201
  if (stats.isDirectory()) continue;
@@ -35315,7 +35318,7 @@ function sirv (dir, opts={}) {
35315
35318
  });
35316
35319
  }
35317
35320
 
35318
- let lookup = opts.dev ? viaLocal.bind(0, dir, isEtag) : viaCache.bind(0, FILES);
35321
+ let lookup = opts.dev ? viaLocal.bind(0, dir.endsWith(sep$1) ? dir : dir + sep$1, isEtag) : viaCache.bind(0, FILES);
35319
35322
 
35320
35323
  return function (req, res, next) {
35321
35324
  let extns = [''];
@@ -37626,7 +37629,22 @@ function indexHtmlMiddleware(root, server) {
37626
37629
  if (isDev && url.startsWith(FS_PREFIX)) {
37627
37630
  filePath = decodeURIComponent(fsPathFromId(url));
37628
37631
  } else {
37629
- filePath = path$b.join(root, decodeURIComponent(url));
37632
+ filePath = normalizePath$3(
37633
+ path$b.resolve(path$b.join(root, decodeURIComponent(url)))
37634
+ );
37635
+ }
37636
+ if (isDev) {
37637
+ const servingAccessResult = checkLoadingAccess(server.config, filePath);
37638
+ if (servingAccessResult === "denied") {
37639
+ return respondWithAccessDenied(filePath, server, res);
37640
+ }
37641
+ if (servingAccessResult === "fallback") {
37642
+ return next();
37643
+ }
37644
+ } else {
37645
+ if (!isParentDirectory(root, filePath)) {
37646
+ return next();
37647
+ }
37630
37648
  }
37631
37649
  if (fs__default.existsSync(filePath)) {
37632
37650
  const headers = isDev ? server.config.server.headers : server.config.preview.headers;
@@ -43912,8 +43930,8 @@ function createCachedImport(imp) {
43912
43930
  return cached;
43913
43931
  };
43914
43932
  }
43915
- const importPostcssImport = createCachedImport(() => import('./dep-AiMcmC_f.js').then(function (n) { return n.i; }));
43916
- const importPostcssModules = createCachedImport(() => import('./dep-SgSik2vo.js').then(function (n) { return n.i; }));
43933
+ const importPostcssImport = createCachedImport(() => import('./dep-D67CHC8_.js').then(function (n) { return n.i; }));
43934
+ const importPostcssModules = createCachedImport(() => import('./dep-B63J_9ss.js').then(function (n) { return n.i; }));
43917
43935
  const importPostcss = createCachedImport(() => import('postcss'));
43918
43936
  const preprocessorWorkerControllerCache = /* @__PURE__ */ new WeakMap();
43919
43937
  let alwaysFakeWorkerWorkerControllerCache;
@@ -48305,7 +48323,8 @@ async function preview(inlineConfig = {}) {
48305
48323
  }
48306
48324
  postHooks.forEach((fn) => fn && fn());
48307
48325
  if (config.appType === "spa" || config.appType === "mpa") {
48308
- app.use(indexHtmlMiddleware(distDir, server));
48326
+ const normalizedDistDir = normalizePath$3(distDir);
48327
+ app.use(indexHtmlMiddleware(normalizedDistDir, server));
48309
48328
  app.use(notFoundMiddleware());
48310
48329
  }
48311
48330
  const hostname = await resolveHostname(options.host);
@@ -1,4 +1,4 @@
1
- import { P as getDefaultExportFromCjs } from './dep-DBxKXgDP.js';
1
+ import { P as getDefaultExportFromCjs } from './dep-Bu492Fnd.js';
2
2
  import require$$0 from 'path';
3
3
  import { l as lib } from './dep-3RmXg9uo.js';
4
4
 
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 { O as colors, I as createLogger, r as resolveConfig } from './chunks/dep-DBxKXgDP.js';
5
+ import { O as colors, I as createLogger, r as resolveConfig } from './chunks/dep-Bu492Fnd.js';
6
6
  import { VERSION } from './constants.js';
7
7
  import 'node:fs/promises';
8
8
  import 'node:url';
@@ -748,7 +748,7 @@ cli.command("[root]", "start dev server").alias("serve").alias("dev").option("--
748
748
  `[boolean] force the optimizer to ignore the cache and re-bundle`
749
749
  ).action(async (root, options) => {
750
750
  filterDuplicateOptions(options);
751
- const { createServer } = await import('./chunks/dep-DBxKXgDP.js').then(function (n) { return n.S; });
751
+ const { createServer } = await import('./chunks/dep-Bu492Fnd.js').then(function (n) { return n.S; });
752
752
  try {
753
753
  const server = await createServer({
754
754
  root,
@@ -843,7 +843,7 @@ cli.command("build [root]", "build for production").option("--target <target>",
843
843
  ).option("-w, --watch", `[boolean] rebuilds when modules have changed on disk`).option("--app", `[boolean] same as \`builder: {}\``).action(
844
844
  async (root, options) => {
845
845
  filterDuplicateOptions(options);
846
- const { createBuilder } = await import('./chunks/dep-DBxKXgDP.js').then(function (n) { return n.T; });
846
+ const { createBuilder } = await import('./chunks/dep-Bu492Fnd.js').then(function (n) { return n.T; });
847
847
  const buildOptions = cleanGlobalCLIOptions(
848
848
  cleanBuilderCLIOptions(options)
849
849
  );
@@ -882,7 +882,7 @@ cli.command(
882
882
  ).action(
883
883
  async (root, options) => {
884
884
  filterDuplicateOptions(options);
885
- const { optimizeDeps } = await import('./chunks/dep-DBxKXgDP.js').then(function (n) { return n.R; });
885
+ const { optimizeDeps } = await import('./chunks/dep-Bu492Fnd.js').then(function (n) { return n.R; });
886
886
  try {
887
887
  const config = await resolveConfig(
888
888
  {
@@ -909,7 +909,7 @@ ${e.stack}`),
909
909
  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(
910
910
  async (root, options) => {
911
911
  filterDuplicateOptions(options);
912
- const { preview } = await import('./chunks/dep-DBxKXgDP.js').then(function (n) { return n.U; });
912
+ const { preview } = await import('./chunks/dep-Bu492Fnd.js').then(function (n) { return n.U; });
913
913
  try {
914
914
  const server = await preview({
915
915
  root,
@@ -1,6 +1,6 @@
1
1
  export { parseAst, parseAstAsync } from 'rollup/parseAst';
2
- import { a as arraify, i as isInNodeModules, D as DevEnvironment } from './chunks/dep-DBxKXgDP.js';
3
- export { B as BuildEnvironment, f as build, m as buildErrorMessage, g as createBuilder, F as createFilter, h as createIdResolver, I as createLogger, n as createRunnableDevEnvironment, c as createServer, y as createServerHotChannel, w as createServerModuleRunner, x as createServerModuleRunnerTransport, d as defineConfig, v as fetchModule, j as formatPostcssSourceMap, L as isFileLoadingAllowed, K as isFileServingAllowed, q as isRunnableDevEnvironment, l as loadConfigFromFile, M as loadEnv, E as mergeAlias, C as mergeConfig, z as moduleRunnerTransform, A as normalizePath, o as optimizeDeps, p as perEnvironmentPlugin, b as perEnvironmentState, k as preprocessCSS, e as preview, r as resolveConfig, N as resolveEnvPrefix, G as rollupVersion, u as runnerImport, J as searchForWorkspaceRoot, H as send, s as sortUserPlugins, t as transformWithEsbuild } from './chunks/dep-DBxKXgDP.js';
2
+ import { a as arraify, i as isInNodeModules, D as DevEnvironment } from './chunks/dep-Bu492Fnd.js';
3
+ export { B as BuildEnvironment, f as build, m as buildErrorMessage, g as createBuilder, F as createFilter, h as createIdResolver, I as createLogger, n as createRunnableDevEnvironment, c as createServer, y as createServerHotChannel, w as createServerModuleRunner, x as createServerModuleRunnerTransport, d as defineConfig, v as fetchModule, j as formatPostcssSourceMap, L as isFileLoadingAllowed, K as isFileServingAllowed, q as isRunnableDevEnvironment, l as loadConfigFromFile, M as loadEnv, E as mergeAlias, C as mergeConfig, z as moduleRunnerTransform, A as normalizePath, o as optimizeDeps, p as perEnvironmentPlugin, b as perEnvironmentState, k as preprocessCSS, e as preview, r as resolveConfig, N as resolveEnvPrefix, G as rollupVersion, u as runnerImport, J as searchForWorkspaceRoot, H as send, s as sortUserPlugins, t as transformWithEsbuild } from './chunks/dep-Bu492Fnd.js';
4
4
  export { defaultAllowedOrigins, DEFAULT_CLIENT_CONDITIONS as defaultClientConditions, DEFAULT_CLIENT_MAIN_FIELDS as defaultClientMainFields, DEFAULT_SERVER_CONDITIONS as defaultServerConditions, DEFAULT_SERVER_MAIN_FIELDS as defaultServerMainFields, VERSION as version } from './constants.js';
5
5
  export { version as esbuildVersion } from 'esbuild';
6
6
  import 'node:fs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite",
3
- "version": "6.3.5",
3
+ "version": "6.3.6",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Evan You",
@@ -131,7 +131,7 @@
131
131
  "rollup-plugin-license": "^3.6.0",
132
132
  "sass": "^1.86.3",
133
133
  "sass-embedded": "^1.86.3",
134
- "sirv": "^3.0.1",
134
+ "sirv": "^3.0.2",
135
135
  "source-map-support": "^0.5.21",
136
136
  "strip-literal": "^3.0.0",
137
137
  "terser": "^5.39.0",