vite 5.4.6 → 5.4.8
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 { C as commonjsGlobal, B as getDefaultExportFromCjs } from './dep-
|
1
|
+
import { C as commonjsGlobal, B as getDefaultExportFromCjs } from './dep-CDnG8rE7.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-
|
36957
|
-
const importPostcssModules = createCachedImport(() => import('./dep-
|
36956
|
+
const importPostcssImport = createCachedImport(() => import('./dep-B7_zXWZq.js').then(function (n) { return n.i; }));
|
36957
|
+
const importPostcssModules = createCachedImport(() => import('./dep-BaJt-LTH.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;
|
@@ -37416,7 +37416,7 @@ const makeModernScssWorker = (resolvers, alias, maxWorkers) => {
|
|
37416
37416
|
fileURLToPath2(canonicalUrl),
|
37417
37417
|
options.filename
|
37418
37418
|
);
|
37419
|
-
return { contents, syntax };
|
37419
|
+
return { contents, syntax, sourceMapUrl: canonicalUrl };
|
37420
37420
|
}
|
37421
37421
|
};
|
37422
37422
|
sassOptions.importers = [
|
@@ -37446,11 +37446,12 @@ const makeModernScssWorker = (resolvers, alias, maxWorkers) => {
|
|
37446
37446
|
return worker;
|
37447
37447
|
};
|
37448
37448
|
const makeModernCompilerScssWorker = (resolvers, alias, _maxWorkers) => {
|
37449
|
-
let
|
37449
|
+
let compilerPromise;
|
37450
37450
|
const worker = {
|
37451
37451
|
async run(sassPath, data, options) {
|
37452
37452
|
const sass = (await import(pathToFileURL(sassPath).href)).default;
|
37453
|
-
|
37453
|
+
compilerPromise ??= sass.initAsyncCompiler();
|
37454
|
+
const compiler = await compilerPromise;
|
37454
37455
|
const sassOptions = { ...options };
|
37455
37456
|
sassOptions.url = pathToFileURL(options.filename);
|
37456
37457
|
sassOptions.sourceMap = options.enableSourcemap;
|
@@ -37476,7 +37477,7 @@ const makeModernCompilerScssWorker = (resolvers, alias, _maxWorkers) => {
|
|
37476
37477
|
resolvers.sass
|
37477
37478
|
);
|
37478
37479
|
const contents = result2.contents ?? await fsp.readFile(result2.file, "utf-8");
|
37479
|
-
return { contents, syntax };
|
37480
|
+
return { contents, syntax, sourceMapUrl: canonicalUrl };
|
37480
37481
|
}
|
37481
37482
|
};
|
37482
37483
|
sassOptions.importers = [
|
@@ -37493,8 +37494,8 @@ const makeModernCompilerScssWorker = (resolvers, alias, _maxWorkers) => {
|
|
37493
37494
|
};
|
37494
37495
|
},
|
37495
37496
|
async stop() {
|
37496
|
-
|
37497
|
-
|
37497
|
+
(await compilerPromise)?.dispose();
|
37498
|
+
compilerPromise = void 0;
|
37498
37499
|
}
|
37499
37500
|
};
|
37500
37501
|
return worker;
|
@@ -66468,7 +66469,7 @@ async function loadConfigFromFile(configEnv, configFile, configRoot = process.cw
|
|
66468
66469
|
debug?.("no config file found.");
|
66469
66470
|
return null;
|
66470
66471
|
}
|
66471
|
-
const isESM = isFilePathESM(resolvedPath);
|
66472
|
+
const isESM = typeof process.versions.deno === "string" || isFilePathESM(resolvedPath);
|
66472
66473
|
try {
|
66473
66474
|
const bundled = await bundleConfigFile(resolvedPath, isESM);
|
66474
66475
|
const userConfig = await loadConfigFromBundledFile(
|
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-CDnG8rE7.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-
|
733
|
+
const { createServer } = await import('./chunks/dep-CDnG8rE7.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-
|
825
|
+
const { build } = await import('./chunks/dep-CDnG8rE7.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-
|
854
|
+
const { optimizeDeps } = await import('./chunks/dep-CDnG8rE7.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-
|
880
|
+
const { preview } = await import('./chunks/dep-CDnG8rE7.js').then(function (n) { return n.G; });
|
881
881
|
try {
|
882
882
|
const server = await preview({
|
883
883
|
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-CDnG8rE7.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-CDnG8rE7.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';
|