vite 7.0.0-beta.2 → 7.0.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.
- package/LICENSE.md +2 -2
- package/dist/client/client.mjs +8 -8
- package/dist/node/chunks/{dep-B_m28uIY.js → dep-BQABeiGC.js} +1 -1
- package/dist/node/chunks/{dep-DZ1Lk4oF.js → dep-BTLup-s1.js} +1 -1
- package/dist/node/chunks/{dep-CZ6VYVb7.js → dep-BVsfzsUS.js} +1 -1
- package/dist/node/chunks/{dep-8cccGkwy.js → dep-BpPEUsd2.js} +40 -40
- package/dist/node/chunks/{dep-Bkc4tc5S.js → dep-DJGyAxkV.js} +316 -348
- package/dist/node/chunks/{dep-BYhaRSbV.js → dep-DcjhO6Jt.js} +65 -30
- package/dist/node/chunks/{dep-C5h9brB_.js → dep-fMAWSKNW.js} +1 -1
- package/dist/node/cli.js +5 -5
- package/dist/node/index.d.ts +27 -234
- package/dist/node/index.js +1 -1
- package/dist/node/module-runner.d.ts +2 -1
- package/dist/node/module-runner.js +10 -51
- package/package.json +12 -12
- package/types/importGlob.d.ts +10 -0
- package/types/internal/terserOptions.d.ts +11 -0
package/LICENSE.md
CHANGED
@@ -323,9 +323,9 @@ Repository: git+https://github.com/jridgewell/sourcemap-codec.git
|
|
323
323
|
## @jridgewell/trace-mapping
|
324
324
|
License: MIT
|
325
325
|
By: Justin Ridgewell
|
326
|
-
Repository: git+https://github.com/jridgewell/
|
326
|
+
Repository: git+https://github.com/jridgewell/sourcemaps.git
|
327
327
|
|
328
|
-
> Copyright
|
328
|
+
> Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
329
329
|
>
|
330
330
|
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
331
331
|
> of this software and associated documentation files (the "Software"), to deal
|
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.75.0/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.75.0/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.75.0/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.75.0/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,
|
@@ -262,7 +262,7 @@ function promiseWithResolvers() {
|
|
262
262
|
//#region src/shared/moduleRunnerTransport.ts
|
263
263
|
function reviveInvokeError(e) {
|
264
264
|
const error = new Error(e.message || "Unknown invoke error");
|
265
|
-
Object.assign(error, e, { runnerError: new Error("RunnerError") });
|
265
|
+
Object.assign(error, e, { runnerError: /* @__PURE__ */ new Error("RunnerError") });
|
266
266
|
return error;
|
267
267
|
}
|
268
268
|
const createInvokeableTransport = (transport$1) => {
|
@@ -310,7 +310,7 @@ const createInvokeableTransport = (transport$1) => {
|
|
310
310
|
},
|
311
311
|
disconnect() {
|
312
312
|
rpcPromises.forEach((promise) => {
|
313
|
-
promise.reject(new Error(`transport was disconnected, cannot call ${JSON.stringify(promise.name)}`));
|
313
|
+
promise.reject(/* @__PURE__ */ new Error(`transport was disconnected, cannot call ${JSON.stringify(promise.name)}`));
|
314
314
|
});
|
315
315
|
rpcPromises.clear();
|
316
316
|
return transport$1.disconnect?.();
|
@@ -336,7 +336,7 @@ const createInvokeableTransport = (transport$1) => {
|
|
336
336
|
if (timeout > 0) {
|
337
337
|
timeoutId = setTimeout(() => {
|
338
338
|
rpcPromises.delete(promiseId);
|
339
|
-
reject(new Error(`transport invoke timed out after ${timeout}ms (data: ${JSON.stringify(wrappedData)})`));
|
339
|
+
reject(/* @__PURE__ */ new Error(`transport invoke timed out after ${timeout}ms (data: ${JSON.stringify(wrappedData)})`));
|
340
340
|
}, timeout);
|
341
341
|
timeoutId?.unref?.();
|
342
342
|
}
|
@@ -421,7 +421,7 @@ const createWebSocketModuleRunnerTransport = (options) => {
|
|
421
421
|
}, { once: true });
|
422
422
|
socket.addEventListener("close", async () => {
|
423
423
|
if (!isOpened) {
|
424
|
-
reject(new Error("WebSocket closed without opened."));
|
424
|
+
reject(/* @__PURE__ */ new Error("WebSocket closed without opened."));
|
425
425
|
return;
|
426
426
|
}
|
427
427
|
onMessage({
|
@@ -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-DJGyAxkV.js";
|
3
3
|
import "./dep-Ctugieod.js";
|
4
4
|
|
5
5
|
export { preview };
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { createRequire as ___createRequire } from 'module'; const require = ___createRequire(import.meta.url);
|
2
|
-
import { BuildEnvironment, build, buildEnvironmentOptionsDefaults, builderOptionsDefaults, createBuilder, createToImportMetaURLBasedRelativeRuntime, injectEnvironmentToHooks, onRollupLog, resolveBuildEnvironmentOptions, resolveBuildOutputs, resolveBuildPlugins, resolveBuilderOptions, resolveLibFilename, resolveUserExternal, toOutputFilePathInCss, toOutputFilePathInHtml, toOutputFilePathInJS, toOutputFilePathWithoutRuntime } from "./dep-
|
2
|
+
import { BuildEnvironment, build, buildEnvironmentOptionsDefaults, builderOptionsDefaults, createBuilder, createToImportMetaURLBasedRelativeRuntime, injectEnvironmentToHooks, onRollupLog, resolveBuildEnvironmentOptions, resolveBuildOutputs, resolveBuildPlugins, resolveBuilderOptions, resolveLibFilename, resolveUserExternal, toOutputFilePathInCss, toOutputFilePathInHtml, toOutputFilePathInJS, toOutputFilePathWithoutRuntime } from "./dep-DJGyAxkV.js";
|
3
3
|
import "./dep-Ctugieod.js";
|
4
4
|
|
5
5
|
export { createBuilder, resolveBuildPlugins };
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { createRequire as ___createRequire } from 'module'; const require = ___createRequire(import.meta.url);
|
2
|
-
import { _createServer, createServer, createServerCloseFn, resolveServerOptions, restartServerWithUrls, serverConfigDefaults } from "./dep-
|
2
|
+
import { _createServer, createServer, createServerCloseFn, resolveServerOptions, restartServerWithUrls, serverConfigDefaults } from "./dep-DJGyAxkV.js";
|
3
3
|
import "./dep-Ctugieod.js";
|
4
4
|
|
5
5
|
export { createServer };
|
@@ -2,8 +2,8 @@ import { createRequire as ___createRequire } from 'module'; const require = ___c
|
|
2
2
|
import { __commonJS } from "./dep-Drtntmtt.js";
|
3
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.6/node_modules/postcss-modules/build/fs.js
|
6
|
+
var require_fs = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.6/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.6/node_modules/postcss-modules/build/unquote.js
|
29
|
+
var require_unquote = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.6/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.6/node_modules/icss-utils/src/replaceValueSymbols.js
|
43
|
+
var require_replaceValueSymbols = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.6/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.6/node_modules/icss-utils/src/replaceSymbols.js
|
61
|
+
var require_replaceSymbols = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.6/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.6/node_modules/icss-utils/src/extractICSS.js
|
75
|
+
var require_extractICSS = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.6/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.6/node_modules/icss-utils/src/createICSSRules.js
|
130
|
+
var require_createICSSRules = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.6/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.6/node_modules/icss-utils/src/index.js
|
175
|
+
var require_src$4 = __commonJS({ "../../node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.6/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.6/node_modules/postcss-modules/build/Parser.js
|
190
|
+
var require_Parser = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.6/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.6/node_modules/postcss-modules/build/saveJSON.js
|
259
|
+
var require_saveJSON = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.6/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.6/node_modules/postcss-modules/build/localsConvention.js
|
919
|
+
var require_localsConvention = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.6/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.6/node_modules/postcss-modules/build/FileSystemLoader.js
|
960
|
+
var require_FileSystemLoader = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.6/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"));
|
@@ -1043,12 +1043,12 @@ 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.6/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.6/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) {
|
1051
|
-
const er = new Error("Nondeterministic import's order");
|
1051
|
+
const er = /* @__PURE__ */ new Error("Nondeterministic import's order");
|
1052
1052
|
const related = graph[node];
|
1053
1053
|
const relatedNode = related.find((relatedNode$1) => graph[relatedNode$1].indexOf(node) > -1);
|
1054
1054
|
er.nodes = [node, relatedNode];
|
@@ -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.6/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.6/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\((?:"([^"]+)"|'([^']+)')\)/;
|
@@ -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.6/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.6/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();
|
@@ -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.6/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.6/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) {
|
@@ -5182,7 +5182,7 @@ var require_src$1 = __commonJS({ "../../node_modules/.pnpm/postcss-modules-scope
|
|
5182
5182
|
});
|
5183
5183
|
}
|
5184
5184
|
const whitespace = "[\\x20\\t\\r\\n\\f]";
|
5185
|
-
const unescapeRegExp = new RegExp("\\\\([\\da-f]{1,6}" + whitespace + "?|(
|
5185
|
+
const unescapeRegExp = new RegExp("\\\\([\\da-f]{1,6}" + whitespace + "?|([\\x20\\t\\r\\n\\f])|.)", "ig");
|
5186
5186
|
function unescape(str$1) {
|
5187
5187
|
return str$1.replace(unescapeRegExp, (_, escaped, escapedWhitespace) => {
|
5188
5188
|
const high = "0x" + escaped - 65536;
|
@@ -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.6/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.6/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.6/node_modules/postcss-modules/build/scoping.js
|
5442
|
+
var require_scoping = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.6/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.6/node_modules/postcss-modules/build/pluginFactory.js
|
5507
|
+
var require_pluginFactory = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.6/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.6/node_modules/postcss-modules/build/index.js
|
5584
|
+
var require_build = __commonJS({ "../../node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.6/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();
|