vite 7.0.0-beta.0 → 7.0.0-beta.2
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.
- package/bin/vite.js +4 -4
- package/dist/client/client.mjs +14 -14
- package/dist/node/chunks/{dep-CCzsqxOh.js → dep-8cccGkwy.js} +51 -51
- package/dist/node/chunks/{dep-RiwDEHuV.js → dep-BO5GbxpL.js} +3 -3
- package/dist/node/chunks/{dep-FHYvcJhE.js → dep-BYhaRSbV.js} +22 -22
- package/dist/node/chunks/{dep-3jlWaCfC.js → dep-B_m28uIY.js} +1 -1
- package/dist/node/chunks/{dep-bvBD1i2C.js → dep-Bkc4tc5S.js} +627 -592
- package/dist/node/chunks/{dep-P8c3Tybu.js → dep-C5h9brB_.js} +1 -1
- package/dist/node/chunks/{dep-D_UgUiRQ.js → dep-CZ6VYVb7.js} +1 -1
- package/dist/node/chunks/{dep-Ccq9jQdz.js → dep-DZ1Lk4oF.js} +1 -1
- package/dist/node/chunks/{dep-D5HXLrlI.js → dep-DmY5m86w.js} +1 -1
- package/dist/node/chunks/{dep-B4i1tHPo.js → dep-Drtntmtt.js} +2 -1
- package/dist/node/cli.js +6 -6
- package/dist/node/index.d.ts +9 -58
- package/dist/node/index.js +1 -1
- package/dist/node/module-runner.d.ts +9 -12
- package/dist/node/module-runner.js +27 -22
- package/dist/node/{moduleRunnerTransport-CnL9s_k9.d.ts → moduleRunnerTransport-BWUZBVLX.d.ts} +2 -2
- package/package.json +11 -12
- package/types/importGlob.d.ts +4 -0
- package/types/internal/cssPreprocessorOptions.d.ts +3 -3
package/bin/vite.js
CHANGED
@@ -3,10 +3,10 @@ import { performance } from 'node:perf_hooks'
|
|
3
3
|
import module from 'node:module'
|
4
4
|
|
5
5
|
if (!import.meta.url.includes('node_modules')) {
|
6
|
-
|
7
|
-
// only
|
8
|
-
|
9
|
-
}
|
6
|
+
if (!process.env.DEBUG_DISABLE_SOURCE_MAP) {
|
7
|
+
// eslint-disable-next-line n/no-unsupported-features/node-builtins -- only used in dev
|
8
|
+
process.setSourceMapsEnabled(true)
|
9
|
+
}
|
10
10
|
|
11
11
|
process.on('unhandledRejection', (err) => {
|
12
12
|
throw new Error('UNHANDLED PROMISE REJECTION', { cause: err })
|
package/dist/client/client.mjs
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import "@vite/env";
|
2
2
|
|
3
|
-
//#region ../../node_modules/.pnpm/@oxc-project+runtime@0.
|
3
|
+
//#region ../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/esm/typeof.js
|
4
4
|
function _typeof(o) {
|
5
5
|
"@babel/helpers - typeof";
|
6
6
|
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o$1) {
|
@@ -11,7 +11,7 @@ function _typeof(o) {
|
|
11
11
|
}
|
12
12
|
|
13
13
|
//#endregion
|
14
|
-
//#region ../../node_modules/.pnpm/@oxc-project+runtime@0.
|
14
|
+
//#region ../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/esm/toPrimitive.js
|
15
15
|
function toPrimitive(t, r) {
|
16
16
|
if ("object" != _typeof(t) || !t) return t;
|
17
17
|
var e = t[Symbol.toPrimitive];
|
@@ -24,14 +24,14 @@ function toPrimitive(t, r) {
|
|
24
24
|
}
|
25
25
|
|
26
26
|
//#endregion
|
27
|
-
//#region ../../node_modules/.pnpm/@oxc-project+runtime@0.
|
27
|
+
//#region ../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/esm/toPropertyKey.js
|
28
28
|
function toPropertyKey(t) {
|
29
29
|
var i = toPrimitive(t, "string");
|
30
30
|
return "symbol" == _typeof(i) ? i : i + "";
|
31
31
|
}
|
32
32
|
|
33
33
|
//#endregion
|
34
|
-
//#region ../../node_modules/.pnpm/@oxc-project+runtime@0.
|
34
|
+
//#region ../../node_modules/.pnpm/@oxc-project+runtime@0.72.2/node_modules/@oxc-project/runtime/src/helpers/esm/defineProperty.js
|
35
35
|
function _defineProperty(e, r, t) {
|
36
36
|
return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
37
37
|
value: t,
|
@@ -56,7 +56,7 @@ var HMRContext = class {
|
|
56
56
|
const listeners = hmrClient$1.customListenersMap.get(event);
|
57
57
|
if (listeners) hmrClient$1.customListenersMap.set(event, listeners.filter((l) => !staleFns.includes(l)));
|
58
58
|
}
|
59
|
-
this.newListeners = new Map();
|
59
|
+
this.newListeners = /* @__PURE__ */ new Map();
|
60
60
|
hmrClient$1.ctxToListenersMap.set(ownerPath, this.newListeners);
|
61
61
|
}
|
62
62
|
get data() {
|
@@ -139,12 +139,12 @@ var HMRClient = class {
|
|
139
139
|
this.logger = logger;
|
140
140
|
this.transport = transport$1;
|
141
141
|
this.importUpdatedModule = importUpdatedModule;
|
142
|
-
_defineProperty(this, "hotModulesMap", new Map());
|
143
|
-
_defineProperty(this, "disposeMap", new Map());
|
144
|
-
_defineProperty(this, "pruneMap", new Map());
|
145
|
-
_defineProperty(this, "dataMap", new Map());
|
146
|
-
_defineProperty(this, "customListenersMap", new Map());
|
147
|
-
_defineProperty(this, "ctxToListenersMap", new Map());
|
142
|
+
_defineProperty(this, "hotModulesMap", /* @__PURE__ */ new Map());
|
143
|
+
_defineProperty(this, "disposeMap", /* @__PURE__ */ new Map());
|
144
|
+
_defineProperty(this, "pruneMap", /* @__PURE__ */ new Map());
|
145
|
+
_defineProperty(this, "dataMap", /* @__PURE__ */ new Map());
|
146
|
+
_defineProperty(this, "customListenersMap", /* @__PURE__ */ new Map());
|
147
|
+
_defineProperty(this, "ctxToListenersMap", /* @__PURE__ */ new Map());
|
148
148
|
_defineProperty(this, "currentFirstInvalidatedBy", void 0);
|
149
149
|
_defineProperty(this, "updateQueue", []);
|
150
150
|
_defineProperty(this, "pendingUpdateQueue", false);
|
@@ -283,7 +283,7 @@ const createInvokeableTransport = (transport$1) => {
|
|
283
283
|
}
|
284
284
|
};
|
285
285
|
if (!transport$1.send || !transport$1.connect) throw new Error("transport must implement send and connect when invoke is not implemented");
|
286
|
-
const rpcPromises = new Map();
|
286
|
+
const rpcPromises = /* @__PURE__ */ new Map();
|
287
287
|
return {
|
288
288
|
...transport$1,
|
289
289
|
connect({ onMessage, onDisconnection }) {
|
@@ -791,7 +791,7 @@ function cleanUrl(pathname) {
|
|
791
791
|
return url.pathname + url.search;
|
792
792
|
}
|
793
793
|
let isFirstUpdate = true;
|
794
|
-
const outdatedLinkTags = new WeakSet();
|
794
|
+
const outdatedLinkTags = /* @__PURE__ */ new WeakSet();
|
795
795
|
const debounceReload = (time) => {
|
796
796
|
let timer;
|
797
797
|
return () => {
|
@@ -958,7 +958,7 @@ function waitForWindowShow() {
|
|
958
958
|
document.addEventListener("visibilitychange", onChange);
|
959
959
|
});
|
960
960
|
}
|
961
|
-
const sheetsMap = new Map();
|
961
|
+
const sheetsMap = /* @__PURE__ */ new Map();
|
962
962
|
if ("document" in globalThis) document.querySelectorAll("style[data-vite-dev-id]").forEach((el) => {
|
963
963
|
sheetsMap.set(el.getAttribute("data-vite-dev-id"), el);
|
964
964
|
});
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { createRequire as ___createRequire } from 'module'; const require = ___createRequire(import.meta.url);
|
2
|
-
import { __commonJS } from "./dep-
|
3
|
-
import { require_lib } from "./dep-
|
2
|
+
import { __commonJS } from "./dep-Drtntmtt.js";
|
3
|
+
import { require_lib } from "./dep-DmY5m86w.js";
|
4
4
|
|
5
|
-
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
6
|
-
var require_fs = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
5
|
+
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/fs.js
|
6
|
+
var require_fs = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/fs.js"(exports) {
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
8
8
|
exports.getFileSystem = getFileSystem;
|
9
9
|
exports.setFileSystem = setFileSystem;
|
@@ -25,8 +25,8 @@ var require_fs = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_po
|
|
25
25
|
} });
|
26
26
|
|
27
27
|
//#endregion
|
28
|
-
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
29
|
-
var require_unquote = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
28
|
+
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/unquote.js
|
29
|
+
var require_unquote = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/unquote.js"(exports) {
|
30
30
|
Object.defineProperty(exports, "__esModule", { value: true });
|
31
31
|
exports.default = unquote;
|
32
32
|
const reg = /['"]/;
|
@@ -39,8 +39,8 @@ var require_unquote = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0
|
|
39
39
|
} });
|
40
40
|
|
41
41
|
//#endregion
|
42
|
-
//#region ../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
43
|
-
var require_replaceValueSymbols = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
42
|
+
//#region ../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.5/node_modules/icss-utils/src/replaceValueSymbols.js
|
43
|
+
var require_replaceValueSymbols = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.5/node_modules/icss-utils/src/replaceValueSymbols.js"(exports, module) {
|
44
44
|
const matchValueName = /[$]?[\w-]+/g;
|
45
45
|
const replaceValueSymbols$2 = (value, replacements) => {
|
46
46
|
let matches;
|
@@ -57,8 +57,8 @@ var require_replaceValueSymbols = __commonJS({ "../../node_modules/.pnpm/icss-ut
|
|
57
57
|
} });
|
58
58
|
|
59
59
|
//#endregion
|
60
|
-
//#region ../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
61
|
-
var require_replaceSymbols = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
60
|
+
//#region ../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.5/node_modules/icss-utils/src/replaceSymbols.js
|
61
|
+
var require_replaceSymbols = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.5/node_modules/icss-utils/src/replaceSymbols.js"(exports, module) {
|
62
62
|
const replaceValueSymbols$1 = require_replaceValueSymbols();
|
63
63
|
const replaceSymbols$1 = (css, replacements) => {
|
64
64
|
css.walk((node) => {
|
@@ -71,8 +71,8 @@ var require_replaceSymbols = __commonJS({ "../../node_modules/.pnpm/icss-utils@5
|
|
71
71
|
} });
|
72
72
|
|
73
73
|
//#endregion
|
74
|
-
//#region ../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
75
|
-
var require_extractICSS = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
74
|
+
//#region ../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.5/node_modules/icss-utils/src/extractICSS.js
|
75
|
+
var require_extractICSS = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.5/node_modules/icss-utils/src/extractICSS.js"(exports, module) {
|
76
76
|
const importPattern = /^:import\(("[^"]*"|'[^']*'|[^"']+)\)$/;
|
77
77
|
const balancedQuotes = /^("[^"]*"|'[^']*'|[^"']+)$/;
|
78
78
|
const getDeclsObject = (rule) => {
|
@@ -126,8 +126,8 @@ var require_extractICSS = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.
|
|
126
126
|
} });
|
127
127
|
|
128
128
|
//#endregion
|
129
|
-
//#region ../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
130
|
-
var require_createICSSRules = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
129
|
+
//#region ../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.5/node_modules/icss-utils/src/createICSSRules.js
|
130
|
+
var require_createICSSRules = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.5/node_modules/icss-utils/src/createICSSRules.js"(exports, module) {
|
131
131
|
const createImports = (imports, postcss, mode = "rule") => {
|
132
132
|
return Object.keys(imports).map((path$2) => {
|
133
133
|
const aliases = imports[path$2];
|
@@ -171,8 +171,8 @@ var require_createICSSRules = __commonJS({ "../../node_modules/.pnpm/icss-utils@
|
|
171
171
|
} });
|
172
172
|
|
173
173
|
//#endregion
|
174
|
-
//#region ../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
175
|
-
var require_src$4 = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
174
|
+
//#region ../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.5/node_modules/icss-utils/src/index.js
|
175
|
+
var require_src$4 = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.5/node_modules/icss-utils/src/index.js"(exports, module) {
|
176
176
|
const replaceValueSymbols = require_replaceValueSymbols();
|
177
177
|
const replaceSymbols = require_replaceSymbols();
|
178
178
|
const extractICSS$1 = require_extractICSS();
|
@@ -186,8 +186,8 @@ var require_src$4 = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_post
|
|
186
186
|
} });
|
187
187
|
|
188
188
|
//#endregion
|
189
|
-
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
190
|
-
var require_Parser = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
189
|
+
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/Parser.js
|
190
|
+
var require_Parser = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/Parser.js"(exports) {
|
191
191
|
Object.defineProperty(exports, "__esModule", { value: true });
|
192
192
|
exports.default = void 0;
|
193
193
|
var _icssUtils = require_src$4();
|
@@ -255,8 +255,8 @@ var require_Parser = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.
|
|
255
255
|
} });
|
256
256
|
|
257
257
|
//#endregion
|
258
|
-
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
259
|
-
var require_saveJSON = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
258
|
+
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/saveJSON.js
|
259
|
+
var require_saveJSON = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/saveJSON.js"(exports) {
|
260
260
|
Object.defineProperty(exports, "__esModule", { value: true });
|
261
261
|
exports.default = saveJSON;
|
262
262
|
var _fs$2 = require_fs();
|
@@ -915,8 +915,8 @@ var require_lodash = __commonJS({ "../../node_modules/.pnpm/lodash.camelcase@4.3
|
|
915
915
|
} });
|
916
916
|
|
917
917
|
//#endregion
|
918
|
-
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
919
|
-
var require_localsConvention = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
918
|
+
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/localsConvention.js
|
919
|
+
var require_localsConvention = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/localsConvention.js"(exports) {
|
920
920
|
Object.defineProperty(exports, "__esModule", { value: true });
|
921
921
|
exports.makeLocalsConventionReducer = makeLocalsConventionReducer;
|
922
922
|
var _lodash = _interopRequireDefault$22(require_lodash());
|
@@ -956,8 +956,8 @@ var require_localsConvention = __commonJS({ "../../node_modules/.pnpm/postcss-mo
|
|
956
956
|
} });
|
957
957
|
|
958
958
|
//#endregion
|
959
|
-
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
960
|
-
var require_FileSystemLoader = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
959
|
+
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/FileSystemLoader.js
|
960
|
+
var require_FileSystemLoader = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/FileSystemLoader.js"(exports) {
|
961
961
|
Object.defineProperty(exports, "__esModule", { value: true });
|
962
962
|
exports.default = void 0;
|
963
963
|
var _postcss$1 = _interopRequireDefault$21(require("postcss"));
|
@@ -1030,7 +1030,7 @@ var require_FileSystemLoader = __commonJS({ "../../node_modules/.pnpm/postcss-mo
|
|
1030
1030
|
get finalSource() {
|
1031
1031
|
const traces = this.traces;
|
1032
1032
|
const sources = this.sources;
|
1033
|
-
let written = new Set();
|
1033
|
+
let written = /* @__PURE__ */ new Set();
|
1034
1034
|
return Object.keys(traces).sort(traceKeySorter).map((key) => {
|
1035
1035
|
const filename = traces[key];
|
1036
1036
|
if (written.has(filename)) return null;
|
@@ -1043,8 +1043,8 @@ var require_FileSystemLoader = __commonJS({ "../../node_modules/.pnpm/postcss-mo
|
|
1043
1043
|
} });
|
1044
1044
|
|
1045
1045
|
//#endregion
|
1046
|
-
//#region ../../node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.
|
1047
|
-
var require_topologicalSort = __commonJS({ "../../node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.
|
1046
|
+
//#region ../../node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.5/node_modules/postcss-modules-extract-imports/src/topologicalSort.js
|
1047
|
+
var require_topologicalSort = __commonJS({ "../../node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.5/node_modules/postcss-modules-extract-imports/src/topologicalSort.js"(exports, module) {
|
1048
1048
|
const PERMANENT_MARKER = 2;
|
1049
1049
|
const TEMPORARY_MARKER = 1;
|
1050
1050
|
function createError(node, graph) {
|
@@ -1085,8 +1085,8 @@ var require_topologicalSort = __commonJS({ "../../node_modules/.pnpm/postcss-mod
|
|
1085
1085
|
} });
|
1086
1086
|
|
1087
1087
|
//#endregion
|
1088
|
-
//#region ../../node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.
|
1089
|
-
var require_src$3 = __commonJS({ "../../node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.
|
1088
|
+
//#region ../../node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.5/node_modules/postcss-modules-extract-imports/src/index.js
|
1089
|
+
var require_src$3 = __commonJS({ "../../node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.5/node_modules/postcss-modules-extract-imports/src/index.js"(exports, module) {
|
1090
1090
|
const topologicalSort = require_topologicalSort();
|
1091
1091
|
const matchImports$1 = /^(.+?)\s+from\s+(?:"([^"]+)"|'([^']+)'|(global))$/;
|
1092
1092
|
const icssImport = /^:import\((?:"([^"]+)"|'([^']+)')\)/;
|
@@ -1470,7 +1470,7 @@ var require_BulkUpdateDecorator = __commonJS({ "../../node_modules/.pnpm/loader-
|
|
1470
1470
|
if (this.hash === void 0) {
|
1471
1471
|
const cacheKey = `${this.hashKey}-${encoding}`;
|
1472
1472
|
digestCache = digestCaches[cacheKey];
|
1473
|
-
if (digestCache === void 0) digestCache = digestCaches[cacheKey] = new Map();
|
1473
|
+
if (digestCache === void 0) digestCache = digestCaches[cacheKey] = /* @__PURE__ */ new Map();
|
1474
1474
|
const cacheEntry = digestCache.get(buffer);
|
1475
1475
|
if (cacheEntry !== void 0) return cacheEntry;
|
1476
1476
|
this.hash = this.hashFactory();
|
@@ -1957,8 +1957,8 @@ var require_container = __commonJS({ "../../node_modules/.pnpm/postcss-selector-
|
|
1957
1957
|
var types$1 = _interopRequireWildcard$3(require_types());
|
1958
1958
|
function _getRequireWildcardCache$3(nodeInterop) {
|
1959
1959
|
if (typeof WeakMap !== "function") return null;
|
1960
|
-
var cacheBabelInterop = new WeakMap();
|
1961
|
-
var cacheNodeInterop = new WeakMap();
|
1960
|
+
var cacheBabelInterop = /* @__PURE__ */ new WeakMap();
|
1961
|
+
var cacheNodeInterop = /* @__PURE__ */ new WeakMap();
|
1962
1962
|
return (_getRequireWildcardCache$3 = function _getRequireWildcardCache$4(nodeInterop$1) {
|
1963
1963
|
return nodeInterop$1 ? cacheNodeInterop : cacheBabelInterop;
|
1964
1964
|
})(nodeInterop);
|
@@ -3363,8 +3363,8 @@ var require_tokenize = __commonJS({ "../../node_modules/.pnpm/postcss-selector-p
|
|
3363
3363
|
var _unescapable, _wordDelimiters;
|
3364
3364
|
function _getRequireWildcardCache$2(nodeInterop) {
|
3365
3365
|
if (typeof WeakMap !== "function") return null;
|
3366
|
-
var cacheBabelInterop = new WeakMap();
|
3367
|
-
var cacheNodeInterop = new WeakMap();
|
3366
|
+
var cacheBabelInterop = /* @__PURE__ */ new WeakMap();
|
3367
|
+
var cacheNodeInterop = /* @__PURE__ */ new WeakMap();
|
3368
3368
|
return (_getRequireWildcardCache$2 = function _getRequireWildcardCache$4(nodeInterop$1) {
|
3369
3369
|
return nodeInterop$1 ? cacheNodeInterop : cacheBabelInterop;
|
3370
3370
|
})(nodeInterop);
|
@@ -3605,8 +3605,8 @@ var require_parser = __commonJS({ "../../node_modules/.pnpm/postcss-selector-par
|
|
3605
3605
|
var _WHITESPACE_TOKENS, _Object$assign;
|
3606
3606
|
function _getRequireWildcardCache$1(nodeInterop) {
|
3607
3607
|
if (typeof WeakMap !== "function") return null;
|
3608
|
-
var cacheBabelInterop = new WeakMap();
|
3609
|
-
var cacheNodeInterop = new WeakMap();
|
3608
|
+
var cacheBabelInterop = /* @__PURE__ */ new WeakMap();
|
3609
|
+
var cacheNodeInterop = /* @__PURE__ */ new WeakMap();
|
3610
3610
|
return (_getRequireWildcardCache$1 = function _getRequireWildcardCache$4(nodeInterop$1) {
|
3611
3611
|
return nodeInterop$1 ? cacheNodeInterop : cacheBabelInterop;
|
3612
3612
|
})(nodeInterop);
|
@@ -4717,8 +4717,8 @@ var require_dist = __commonJS({ "../../node_modules/.pnpm/postcss-selector-parse
|
|
4717
4717
|
var selectors = _interopRequireWildcard(require_selectors());
|
4718
4718
|
function _getRequireWildcardCache(nodeInterop) {
|
4719
4719
|
if (typeof WeakMap !== "function") return null;
|
4720
|
-
var cacheBabelInterop = new WeakMap();
|
4721
|
-
var cacheNodeInterop = new WeakMap();
|
4720
|
+
var cacheBabelInterop = /* @__PURE__ */ new WeakMap();
|
4721
|
+
var cacheNodeInterop = /* @__PURE__ */ new WeakMap();
|
4722
4722
|
return (_getRequireWildcardCache = function _getRequireWildcardCache$4(nodeInterop$1) {
|
4723
4723
|
return nodeInterop$1 ? cacheNodeInterop : cacheBabelInterop;
|
4724
4724
|
})(nodeInterop);
|
@@ -4753,8 +4753,8 @@ var require_dist = __commonJS({ "../../node_modules/.pnpm/postcss-selector-parse
|
|
4753
4753
|
} });
|
4754
4754
|
|
4755
4755
|
//#endregion
|
4756
|
-
//#region ../../node_modules/.pnpm/postcss-modules-local-by-default@4.2.0_postcss@8.5.
|
4757
|
-
var require_src$2 = __commonJS({ "../../node_modules/.pnpm/postcss-modules-local-by-default@4.2.0_postcss@8.5.
|
4756
|
+
//#region ../../node_modules/.pnpm/postcss-modules-local-by-default@4.2.0_postcss@8.5.5/node_modules/postcss-modules-local-by-default/src/index.js
|
4757
|
+
var require_src$2 = __commonJS({ "../../node_modules/.pnpm/postcss-modules-local-by-default@4.2.0_postcss@8.5.5/node_modules/postcss-modules-local-by-default/src/index.js"(exports, module) {
|
4758
4758
|
const selectorParser$1 = require_dist();
|
4759
4759
|
const valueParser = require_lib();
|
4760
4760
|
const { extractICSS } = require_src$4();
|
@@ -5077,7 +5077,7 @@ var require_src$2 = __commonJS({ "../../node_modules/.pnpm/postcss-modules-local
|
|
5077
5077
|
return {
|
5078
5078
|
postcssPlugin: "postcss-modules-local-by-default",
|
5079
5079
|
prepare() {
|
5080
|
-
const localAliasMap = new Map();
|
5080
|
+
const localAliasMap = /* @__PURE__ */ new Map();
|
5081
5081
|
return { Once(root$2) {
|
5082
5082
|
const { icssImports } = extractICSS(root$2, false);
|
5083
5083
|
const enforcePureMode = pureMode && !isPureCheckDisabled(root$2);
|
@@ -5159,8 +5159,8 @@ var require_src$2 = __commonJS({ "../../node_modules/.pnpm/postcss-modules-local
|
|
5159
5159
|
} });
|
5160
5160
|
|
5161
5161
|
//#endregion
|
5162
|
-
//#region ../../node_modules/.pnpm/postcss-modules-scope@3.2.1_postcss@8.5.
|
5163
|
-
var require_src$1 = __commonJS({ "../../node_modules/.pnpm/postcss-modules-scope@3.2.1_postcss@8.5.
|
5162
|
+
//#region ../../node_modules/.pnpm/postcss-modules-scope@3.2.1_postcss@8.5.5/node_modules/postcss-modules-scope/src/index.js
|
5163
|
+
var require_src$1 = __commonJS({ "../../node_modules/.pnpm/postcss-modules-scope@3.2.1_postcss@8.5.5/node_modules/postcss-modules-scope/src/index.js"(exports, module) {
|
5164
5164
|
const selectorParser = require_dist();
|
5165
5165
|
const hasOwnProperty = Object.prototype.hasOwnProperty;
|
5166
5166
|
function isNestedRule(rule) {
|
@@ -5349,8 +5349,8 @@ var require_string_hash = __commonJS({ "../../node_modules/.pnpm/string-hash@1.1
|
|
5349
5349
|
} });
|
5350
5350
|
|
5351
5351
|
//#endregion
|
5352
|
-
//#region ../../node_modules/.pnpm/postcss-modules-values@4.0.0_postcss@8.5.
|
5353
|
-
var require_src = __commonJS({ "../../node_modules/.pnpm/postcss-modules-values@4.0.0_postcss@8.5.
|
5352
|
+
//#region ../../node_modules/.pnpm/postcss-modules-values@4.0.0_postcss@8.5.5/node_modules/postcss-modules-values/src/index.js
|
5353
|
+
var require_src = __commonJS({ "../../node_modules/.pnpm/postcss-modules-values@4.0.0_postcss@8.5.5/node_modules/postcss-modules-values/src/index.js"(exports, module) {
|
5354
5354
|
const ICSSUtils = require_src$4();
|
5355
5355
|
const matchImports = /^(.+?|\([\s\S]+?\))\s+from\s+("[^"]*"|'[^']*'|[\w-]+)$/;
|
5356
5356
|
const matchValueDefinition = /(?:\s+|^)([\w-]+):?(.*?)$/;
|
@@ -5438,8 +5438,8 @@ var require_src = __commonJS({ "../../node_modules/.pnpm/postcss-modules-values@
|
|
5438
5438
|
} });
|
5439
5439
|
|
5440
5440
|
//#endregion
|
5441
|
-
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
5442
|
-
var require_scoping = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
5441
|
+
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/scoping.js
|
5442
|
+
var require_scoping = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/scoping.js"(exports) {
|
5443
5443
|
Object.defineProperty(exports, "__esModule", { value: true });
|
5444
5444
|
exports.behaviours = void 0;
|
5445
5445
|
exports.getDefaultPlugins = getDefaultPlugins;
|
@@ -5503,8 +5503,8 @@ var require_scoping = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0
|
|
5503
5503
|
} });
|
5504
5504
|
|
5505
5505
|
//#endregion
|
5506
|
-
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
5507
|
-
var require_pluginFactory = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
5506
|
+
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/pluginFactory.js
|
5507
|
+
var require_pluginFactory = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/pluginFactory.js"(exports) {
|
5508
5508
|
Object.defineProperty(exports, "__esModule", { value: true });
|
5509
5509
|
exports.makePlugin = makePlugin;
|
5510
5510
|
var _postcss = _interopRequireDefault(require("postcss"));
|
@@ -5580,8 +5580,8 @@ var require_pluginFactory = __commonJS({ "../../node_modules/.pnpm/postcss-modul
|
|
5580
5580
|
} });
|
5581
5581
|
|
5582
5582
|
//#endregion
|
5583
|
-
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
5584
|
-
var require_build = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
5583
|
+
//#region ../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/index.js
|
5584
|
+
var require_build = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.5/node_modules/postcss-modules/build/index.js"(exports, module) {
|
5585
5585
|
var _fs = require("fs");
|
5586
5586
|
var _fs2 = require_fs();
|
5587
5587
|
var _pluginFactory = require_pluginFactory();
|
@@ -1241,9 +1241,9 @@ const SPECIAL_ELEMENTS = {
|
|
1241
1241
|
$.FOREIGN_OBJECT,
|
1242
1242
|
$.DESC
|
1243
1243
|
]),
|
1244
|
-
[NS.XLINK]: new Set(),
|
1245
|
-
[NS.XML]: new Set(),
|
1246
|
-
[NS.XMLNS]: new Set()
|
1244
|
+
[NS.XLINK]: /* @__PURE__ */ new Set(),
|
1245
|
+
[NS.XML]: /* @__PURE__ */ new Set(),
|
1246
|
+
[NS.XMLNS]: /* @__PURE__ */ new Set()
|
1247
1247
|
};
|
1248
1248
|
const NUMBERED_HEADERS = new Set([
|
1249
1249
|
$.H1,
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { createRequire as ___createRequire } from 'module'; const require = ___createRequire(import.meta.url);
|
2
|
-
import { __commonJS } from "./dep-
|
3
|
-
import { require_lib } from "./dep-
|
2
|
+
import { __commonJS } from "./dep-Drtntmtt.js";
|
3
|
+
import { require_lib } from "./dep-DmY5m86w.js";
|
4
4
|
|
5
|
-
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
6
|
-
var require_format_import_prelude = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
5
|
+
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/format-import-prelude.js
|
6
|
+
var require_format_import_prelude = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/format-import-prelude.js"(exports, module) {
|
7
7
|
module.exports = function formatImportPrelude$2(layer, media, supports) {
|
8
8
|
const parts = [];
|
9
9
|
if (typeof layer !== "undefined") {
|
@@ -18,8 +18,8 @@ var require_format_import_prelude = __commonJS({ "../../node_modules/.pnpm/postc
|
|
18
18
|
} });
|
19
19
|
|
20
20
|
//#endregion
|
21
|
-
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
22
|
-
var require_base64_encoded_import = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
21
|
+
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/base64-encoded-import.js
|
22
|
+
var require_base64_encoded_import = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/base64-encoded-import.js"(exports, module) {
|
23
23
|
const formatImportPrelude$1 = require_format_import_prelude();
|
24
24
|
module.exports = function base64EncodedConditionalImport$1(prelude, conditions) {
|
25
25
|
conditions.reverse();
|
@@ -31,8 +31,8 @@ var require_base64_encoded_import = __commonJS({ "../../node_modules/.pnpm/postc
|
|
31
31
|
} });
|
32
32
|
|
33
33
|
//#endregion
|
34
|
-
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
35
|
-
var require_apply_conditions = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
34
|
+
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/apply-conditions.js
|
35
|
+
var require_apply_conditions = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/apply-conditions.js"(exports, module) {
|
36
36
|
const base64EncodedConditionalImport = require_base64_encoded_import();
|
37
37
|
module.exports = function applyConditions$1(bundle, atRule) {
|
38
38
|
bundle.forEach((stmt) => {
|
@@ -89,8 +89,8 @@ var require_apply_conditions = __commonJS({ "../../node_modules/.pnpm/postcss-im
|
|
89
89
|
} });
|
90
90
|
|
91
91
|
//#endregion
|
92
|
-
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
93
|
-
var require_apply_raws = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
92
|
+
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/apply-raws.js
|
93
|
+
var require_apply_raws = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/apply-raws.js"(exports, module) {
|
94
94
|
module.exports = function applyRaws$1(bundle) {
|
95
95
|
bundle.forEach((stmt, index) => {
|
96
96
|
if (index === 0) return;
|
@@ -104,8 +104,8 @@ var require_apply_raws = __commonJS({ "../../node_modules/.pnpm/postcss-import@1
|
|
104
104
|
} });
|
105
105
|
|
106
106
|
//#endregion
|
107
|
-
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
108
|
-
var require_apply_styles = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
107
|
+
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/apply-styles.js
|
108
|
+
var require_apply_styles = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/apply-styles.js"(exports, module) {
|
109
109
|
module.exports = function applyStyles$1(bundle, styles) {
|
110
110
|
styles.nodes = [];
|
111
111
|
bundle.forEach((stmt) => {
|
@@ -121,8 +121,8 @@ var require_apply_styles = __commonJS({ "../../node_modules/.pnpm/postcss-import
|
|
121
121
|
} });
|
122
122
|
|
123
123
|
//#endregion
|
124
|
-
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
125
|
-
var require_data_url = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
124
|
+
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/data-url.js
|
125
|
+
var require_data_url = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/data-url.js"(exports, module) {
|
126
126
|
const anyDataURLRegexp = /^data:text\/css(?:;(base64|plain))?,/i;
|
127
127
|
const base64DataURLRegexp = /^data:text\/css;base64,/i;
|
128
128
|
const plainDataURLRegexp = /^data:text\/css;plain,/i;
|
@@ -141,8 +141,8 @@ var require_data_url = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.
|
|
141
141
|
} });
|
142
142
|
|
143
143
|
//#endregion
|
144
|
-
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
145
|
-
var require_parse_statements = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
144
|
+
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/parse-statements.js
|
145
|
+
var require_parse_statements = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/parse-statements.js"(exports, module) {
|
146
146
|
const valueParser = require_lib();
|
147
147
|
const { stringify } = valueParser;
|
148
148
|
module.exports = function parseStatements$1(result, styles, conditions, from) {
|
@@ -257,8 +257,8 @@ var require_parse_statements = __commonJS({ "../../node_modules/.pnpm/postcss-im
|
|
257
257
|
} });
|
258
258
|
|
259
259
|
//#endregion
|
260
|
-
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
261
|
-
var require_process_content = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
260
|
+
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/process-content.js
|
261
|
+
var require_process_content = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/process-content.js"(exports, module) {
|
262
262
|
const path$2 = require("path");
|
263
263
|
let sugarss;
|
264
264
|
module.exports = function processContent$1(result, content, filename, options, postcss) {
|
@@ -292,8 +292,8 @@ var require_process_content = __commonJS({ "../../node_modules/.pnpm/postcss-imp
|
|
292
292
|
} });
|
293
293
|
|
294
294
|
//#endregion
|
295
|
-
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
296
|
-
var require_parse_styles = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
295
|
+
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/parse-styles.js
|
296
|
+
var require_parse_styles = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/lib/parse-styles.js"(exports, module) {
|
297
297
|
const path$1 = require("path");
|
298
298
|
const dataURL = require_data_url();
|
299
299
|
const parseStatements = require_parse_statements();
|
@@ -397,8 +397,8 @@ var require_parse_styles = __commonJS({ "../../node_modules/.pnpm/postcss-import
|
|
397
397
|
} });
|
398
398
|
|
399
399
|
//#endregion
|
400
|
-
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
401
|
-
var require_postcss_import = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.
|
400
|
+
//#region ../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/index.js
|
401
|
+
var require_postcss_import = __commonJS({ "../../node_modules/.pnpm/postcss-import@16.1.0_postcss@8.5.5/node_modules/postcss-import/index.js"(exports, module) {
|
402
402
|
const path = require("path");
|
403
403
|
const applyConditions = require_apply_conditions();
|
404
404
|
const applyRaws = require_apply_raws();
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { createRequire as ___createRequire } from 'module'; const require = ___createRequire(import.meta.url);
|
2
|
-
import { preview, resolvePreviewOptions } from "./dep-
|
2
|
+
import { preview, resolvePreviewOptions } from "./dep-Bkc4tc5S.js";
|
3
3
|
import "./dep-Ctugieod.js";
|
4
4
|
|
5
5
|
export { preview };
|