vite 5.4.17 → 5.4.18
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.
@@ -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-75Pw0qnz.js').then(function (n) { return n.i; }));
|
36995
|
+
const importPostcssModules = createCachedImport(() => import('./dep-nOVVHa2_.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;
|
@@ -62931,6 +62931,17 @@ function mapFiles(files, root) {
|
|
62931
62931
|
});
|
62932
62932
|
}
|
62933
62933
|
|
62934
|
+
function rejectInvalidRequestMiddleware() {
|
62935
|
+
return function viteRejectInvalidRequestMiddleware(req, res, next) {
|
62936
|
+
if (req.url?.includes("#")) {
|
62937
|
+
res.writeHead(400);
|
62938
|
+
res.end();
|
62939
|
+
return;
|
62940
|
+
}
|
62941
|
+
return next();
|
62942
|
+
};
|
62943
|
+
}
|
62944
|
+
|
62934
62945
|
function createServer(inlineConfig = {}) {
|
62935
62946
|
return _createServer(inlineConfig, { hotListen: true });
|
62936
62947
|
}
|
@@ -63262,6 +63273,7 @@ async function _createServer(inlineConfig = {}, options) {
|
|
63262
63273
|
if (process.env.DEBUG) {
|
63263
63274
|
middlewares.use(timeMiddleware(root));
|
63264
63275
|
}
|
63276
|
+
middlewares.use(rejectInvalidRequestMiddleware());
|
63265
63277
|
const { cors } = serverConfig;
|
63266
63278
|
if (cors !== false) {
|
63267
63279
|
middlewares.use(
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { C as commonjsGlobal, B as getDefaultExportFromCjs } from './dep-
|
1
|
+
import { C as commonjsGlobal, B as getDefaultExportFromCjs } from './dep-DbT5NFX0.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-DbT5NFX0.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-DbT5NFX0.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-DbT5NFX0.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-DbT5NFX0.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-DbT5NFX0.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-DbT5NFX0.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-DbT5NFX0.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';
|