vite 6.2.0-beta.1 → 6.2.1
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.
Potentially problematic release.
This version of vite might be problematic. Click here for more details.
- package/bin/vite.js +9 -0
- package/client.d.ts +5 -0
- package/dist/client/client.mjs +1 -0
- package/dist/node/chunks/{dep-CQyoC9dM.js → dep-Ccxds025.js} +1 -1
- package/dist/node/chunks/{dep-B_VirPXO.js → dep-CmNzPT96.js} +1 -1
- package/dist/node/chunks/{dep-CuXbLJyX.js → dep-glQox-ep.js} +1732 -1719
- package/dist/node/cli.js +8 -8
- package/dist/node/index.js +5 -5
- package/dist/node/module-runner.js +1 -1
- package/dist/node-cjs/publicUtils.cjs +1 -1
- package/package.json +8 -8
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-
|
5
|
+
import { O as colors, I as createLogger, r as resolveConfig } from './chunks/dep-glQox-ep.js';
|
6
6
|
import { VERSION } from './constants.js';
|
7
7
|
import 'node:fs/promises';
|
8
8
|
import 'node:url';
|
@@ -28,19 +28,19 @@ import 'node:net';
|
|
28
28
|
import 'node:dns';
|
29
29
|
import 'vite/module-runner';
|
30
30
|
import 'rollup/parseAst';
|
31
|
+
import 'node:buffer';
|
31
32
|
import 'module';
|
32
33
|
import 'node:readline';
|
33
34
|
import 'node:process';
|
34
|
-
import 'node:buffer';
|
35
35
|
import 'node:events';
|
36
36
|
import 'crypto';
|
37
37
|
import 'node:assert';
|
38
38
|
import 'node:v8';
|
39
39
|
import 'node:worker_threads';
|
40
|
-
import 'zlib';
|
41
|
-
import 'buffer';
|
42
40
|
import 'https';
|
43
41
|
import 'tls';
|
42
|
+
import 'zlib';
|
43
|
+
import 'buffer';
|
44
44
|
import 'assert';
|
45
45
|
import 'node:querystring';
|
46
46
|
import 'node:zlib';
|
@@ -745,7 +745,7 @@ cli.command("[root]", "start dev server").alias("serve").alias("dev").option("--
|
|
745
745
|
`[boolean] force the optimizer to ignore the cache and re-bundle`
|
746
746
|
).action(async (root, options) => {
|
747
747
|
filterDuplicateOptions(options);
|
748
|
-
const { createServer } = await import('./chunks/dep-
|
748
|
+
const { createServer } = await import('./chunks/dep-glQox-ep.js').then(function (n) { return n.S; });
|
749
749
|
try {
|
750
750
|
const server = await createServer({
|
751
751
|
root,
|
@@ -840,7 +840,7 @@ cli.command("build [root]", "build for production").option("--target <target>",
|
|
840
840
|
).option("-w, --watch", `[boolean] rebuilds when modules have changed on disk`).option("--app", `[boolean] same as \`builder: {}\``).action(
|
841
841
|
async (root, options) => {
|
842
842
|
filterDuplicateOptions(options);
|
843
|
-
const { createBuilder } = await import('./chunks/dep-
|
843
|
+
const { createBuilder } = await import('./chunks/dep-glQox-ep.js').then(function (n) { return n.T; });
|
844
844
|
const buildOptions = cleanGlobalCLIOptions(
|
845
845
|
cleanBuilderCLIOptions(options)
|
846
846
|
);
|
@@ -879,7 +879,7 @@ cli.command(
|
|
879
879
|
).action(
|
880
880
|
async (root, options) => {
|
881
881
|
filterDuplicateOptions(options);
|
882
|
-
const { optimizeDeps } = await import('./chunks/dep-
|
882
|
+
const { optimizeDeps } = await import('./chunks/dep-glQox-ep.js').then(function (n) { return n.R; });
|
883
883
|
try {
|
884
884
|
const config = await resolveConfig(
|
885
885
|
{
|
@@ -906,7 +906,7 @@ ${e.stack}`),
|
|
906
906
|
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(
|
907
907
|
async (root, options) => {
|
908
908
|
filterDuplicateOptions(options);
|
909
|
-
const { preview } = await import('./chunks/dep-
|
909
|
+
const { preview } = await import('./chunks/dep-glQox-ep.js').then(function (n) { return n.U; });
|
910
910
|
try {
|
911
911
|
const server = await preview({
|
912
912
|
root,
|
package/dist/node/index.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
export { parseAst, parseAstAsync } from 'rollup/parseAst';
|
2
|
-
import { a as arraify, i as isInNodeModules } from './chunks/dep-
|
3
|
-
export { B as BuildEnvironment, D as DevEnvironment, 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-
|
2
|
+
import { a as arraify, i as isInNodeModules } from './chunks/dep-glQox-ep.js';
|
3
|
+
export { B as BuildEnvironment, D as DevEnvironment, 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-glQox-ep.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';
|
@@ -29,19 +29,19 @@ import 'node:os';
|
|
29
29
|
import 'node:net';
|
30
30
|
import 'node:dns';
|
31
31
|
import 'vite/module-runner';
|
32
|
+
import 'node:buffer';
|
32
33
|
import 'module';
|
33
34
|
import 'node:readline';
|
34
35
|
import 'node:process';
|
35
|
-
import 'node:buffer';
|
36
36
|
import 'node:events';
|
37
37
|
import 'crypto';
|
38
38
|
import 'node:assert';
|
39
39
|
import 'node:v8';
|
40
40
|
import 'node:worker_threads';
|
41
|
-
import 'zlib';
|
42
|
-
import 'buffer';
|
43
41
|
import 'https';
|
44
42
|
import 'tls';
|
43
|
+
import 'zlib';
|
44
|
+
import 'buffer';
|
45
45
|
import 'assert';
|
46
46
|
import 'node:querystring';
|
47
47
|
import 'node:zlib';
|
@@ -1274,7 +1274,7 @@ ${getStack()}`
|
|
1274
1274
|
function exportAll(exports, sourceModule) {
|
1275
1275
|
if (exports !== sourceModule && !(isPrimitive(sourceModule) || Array.isArray(sourceModule) || sourceModule instanceof Promise)) {
|
1276
1276
|
for (const key in sourceModule)
|
1277
|
-
if (key !== "default" && key !== "__esModule")
|
1277
|
+
if (key !== "default" && key !== "__esModule" && !(key in exports))
|
1278
1278
|
try {
|
1279
1279
|
Object.defineProperty(exports, key, {
|
1280
1280
|
enumerable: !0,
|
@@ -3754,7 +3754,7 @@ function normalizeSingleAlias({
|
|
3754
3754
|
replacement,
|
3755
3755
|
customResolver
|
3756
3756
|
}) {
|
3757
|
-
if (typeof find === "string" && find
|
3757
|
+
if (typeof find === "string" && find.endsWith("/") && replacement.endsWith("/")) {
|
3758
3758
|
find = find.slice(0, find.length - 1);
|
3759
3759
|
replacement = replacement.slice(0, replacement.length - 1);
|
3760
3760
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vite",
|
3
|
-
"version": "6.2.
|
3
|
+
"version": "6.2.1",
|
4
4
|
"type": "module",
|
5
5
|
"license": "MIT",
|
6
6
|
"author": "Evan You",
|
@@ -73,7 +73,7 @@
|
|
73
73
|
"//": "READ CONTRIBUTING.md to understand what to put under deps vs. devDeps!",
|
74
74
|
"dependencies": {
|
75
75
|
"esbuild": "^0.25.0",
|
76
|
-
"postcss": "^8.5.
|
76
|
+
"postcss": "^8.5.3",
|
77
77
|
"rollup": "^4.30.1"
|
78
78
|
},
|
79
79
|
"optionalDependencies": {
|
@@ -113,7 +113,7 @@
|
|
113
113
|
"magic-string": "^0.30.17",
|
114
114
|
"mlly": "^1.7.4",
|
115
115
|
"mrmime": "^2.0.1",
|
116
|
-
"nanoid": "^5.1.
|
116
|
+
"nanoid": "^5.1.2",
|
117
117
|
"open": "^10.1.0",
|
118
118
|
"parse5": "^7.2.1",
|
119
119
|
"pathe": "^2.0.3",
|
@@ -125,20 +125,20 @@
|
|
125
125
|
"postcss-modules": "^6.0.1",
|
126
126
|
"resolve.exports": "^2.0.3",
|
127
127
|
"rollup-plugin-dts": "^6.1.1",
|
128
|
-
"rollup-plugin-esbuild": "^6.2.
|
128
|
+
"rollup-plugin-esbuild": "^6.2.1",
|
129
129
|
"rollup-plugin-license": "^3.6.0",
|
130
|
-
"sass": "^1.85.
|
131
|
-
"sass-embedded": "^1.85.
|
130
|
+
"sass": "^1.85.1",
|
131
|
+
"sass-embedded": "^1.85.1",
|
132
132
|
"sirv": "^3.0.1",
|
133
133
|
"source-map-support": "^0.5.21",
|
134
134
|
"strip-literal": "^3.0.0",
|
135
135
|
"terser": "^5.39.0",
|
136
|
-
"tinyglobby": "^0.2.
|
136
|
+
"tinyglobby": "^0.2.12",
|
137
137
|
"tsconfck": "^3.1.5",
|
138
138
|
"tslib": "^2.8.1",
|
139
139
|
"types": "link:./types",
|
140
140
|
"ufo": "^1.5.4",
|
141
|
-
"ws": "^8.18.
|
141
|
+
"ws": "^8.18.1"
|
142
142
|
},
|
143
143
|
"peerDependencies": {
|
144
144
|
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|