vite 6.2.0-beta.0 → 6.2.0-beta.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.
@@ -1,4 +1,4 @@
1
- import { P as getDefaultExportFromCjs } from './dep-C6SLLVWG.js';
1
+ import { P as getDefaultExportFromCjs } from './dep-CuXbLJyX.js';
2
2
  import require$$0 from 'path';
3
3
  import { l as lib } from './dep-3RmXg9uo.js';
4
4
 
@@ -1,4 +1,4 @@
1
- import { Q as commonjsGlobal, P as getDefaultExportFromCjs } from './dep-C6SLLVWG.js';
1
+ import { Q as commonjsGlobal, P as getDefaultExportFromCjs } from './dep-CuXbLJyX.js';
2
2
  import require$$0$2 from 'fs';
3
3
  import require$$0 from 'postcss';
4
4
  import require$$0$1 from 'path';
@@ -48462,7 +48462,12 @@ function cssPostPlugin(config) {
48462
48462
  ].join("\n");
48463
48463
  return { code: code2, map: { mappings: "" } };
48464
48464
  }
48465
- const cssScopeTo = this.getModuleInfo(id)?.meta?.vite?.cssScopeTo;
48465
+ const cssScopeTo = (
48466
+ // NOTE: `this.getModuleInfo` can be undefined when the plugin is called directly
48467
+ // adding `?.` temporary to avoid unocss from breaking
48468
+ // TODO: remove `?.` after `this.getModuleInfo` in Vite 7
48469
+ this.getModuleInfo?.(id)?.meta?.vite?.cssScopeTo
48470
+ );
48466
48471
  if (!inlined) {
48467
48472
  styles.putContent(id, css, cssScopeTo);
48468
48473
  }
@@ -49199,8 +49204,8 @@ function createCachedImport(imp) {
49199
49204
  return cached;
49200
49205
  };
49201
49206
  }
49202
- const importPostcssImport = createCachedImport(() => import('./dep-CtqJUVir.js').then(function (n) { return n.i; }));
49203
- const importPostcssModules = createCachedImport(() => import('./dep-8m3w9g5k.js').then(function (n) { return n.i; }));
49207
+ const importPostcssImport = createCachedImport(() => import('./dep-B_VirPXO.js').then(function (n) { return n.i; }));
49208
+ const importPostcssModules = createCachedImport(() => import('./dep-CQyoC9dM.js').then(function (n) { return n.i; }));
49204
49209
  const importPostcss = createCachedImport(() => import('postcss'));
49205
49210
  const preprocessorWorkerControllerCache = /* @__PURE__ */ new WeakMap();
49206
49211
  let alwaysFakeWorkerWorkerControllerCache;
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-C6SLLVWG.js';
5
+ import { O as colors, I as createLogger, r as resolveConfig } from './chunks/dep-CuXbLJyX.js';
6
6
  import { VERSION } from './constants.js';
7
7
  import 'node:fs/promises';
8
8
  import 'node:url';
@@ -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-C6SLLVWG.js').then(function (n) { return n.S; });
748
+ const { createServer } = await import('./chunks/dep-CuXbLJyX.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-C6SLLVWG.js').then(function (n) { return n.T; });
843
+ const { createBuilder } = await import('./chunks/dep-CuXbLJyX.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-C6SLLVWG.js').then(function (n) { return n.R; });
882
+ const { optimizeDeps } = await import('./chunks/dep-CuXbLJyX.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-C6SLLVWG.js').then(function (n) { return n.U; });
909
+ const { preview } = await import('./chunks/dep-CuXbLJyX.js').then(function (n) { return n.U; });
910
910
  try {
911
911
  const server = await preview({
912
912
  root,
@@ -1,6 +1,6 @@
1
1
  export { parseAst, parseAstAsync } from 'rollup/parseAst';
2
- import { a as arraify, i as isInNodeModules } from './chunks/dep-C6SLLVWG.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-C6SLLVWG.js';
2
+ import { a as arraify, i as isInNodeModules } from './chunks/dep-CuXbLJyX.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-CuXbLJyX.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.2.0-beta.0",
3
+ "version": "6.2.0-beta.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Evan You",