@rspack-debug/browser 2.0.5 → 2.0.6
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/dist/612.js +69 -0
- package/dist/builtin-plugin/DeterministicModuleIdsPlugin.d.ts +11 -0
- package/dist/exports.d.ts +2 -1
- package/dist/index.js +100 -144
- package/dist/napi-binding.d.ts +10 -1
- package/package.json +3 -3
package/dist/612.js
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __webpack_modules__ = {};
|
|
2
|
+
var __webpack_module_cache__ = {};
|
|
3
|
+
function __webpack_require__(moduleId) {
|
|
4
|
+
var cachedModule = __webpack_module_cache__[moduleId];
|
|
5
|
+
if (void 0 !== cachedModule) return cachedModule.exports;
|
|
6
|
+
var module = __webpack_module_cache__[moduleId] = {
|
|
7
|
+
exports: {}
|
|
8
|
+
};
|
|
9
|
+
__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
10
|
+
return module.exports;
|
|
11
|
+
}
|
|
12
|
+
__webpack_require__.m = __webpack_modules__;
|
|
13
|
+
(()=>{
|
|
14
|
+
__webpack_require__.n = (module)=>{
|
|
15
|
+
var getter = module && module.__esModule ? ()=>module['default'] : ()=>module;
|
|
16
|
+
__webpack_require__.d(getter, {
|
|
17
|
+
a: getter
|
|
18
|
+
});
|
|
19
|
+
return getter;
|
|
20
|
+
};
|
|
21
|
+
})();
|
|
22
|
+
(()=>{
|
|
23
|
+
__webpack_require__.d = (exports, getters, values)=>{
|
|
24
|
+
var define = (defs, kind)=>{
|
|
25
|
+
for(var key in defs)if (__webpack_require__.o(defs, key) && !__webpack_require__.o(exports, key)) Object.defineProperty(exports, key, {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
[kind]: defs[key]
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
define(getters, "get");
|
|
31
|
+
define(values, "value");
|
|
32
|
+
};
|
|
33
|
+
})();
|
|
34
|
+
(()=>{
|
|
35
|
+
__webpack_require__.add = function(modules) {
|
|
36
|
+
Object.assign(__webpack_require__.m, modules);
|
|
37
|
+
};
|
|
38
|
+
})();
|
|
39
|
+
(()=>{
|
|
40
|
+
__webpack_require__.g = (()=>{
|
|
41
|
+
if ('object' == typeof globalThis) return globalThis;
|
|
42
|
+
try {
|
|
43
|
+
return this || new Function('return this')();
|
|
44
|
+
} catch (e) {
|
|
45
|
+
if ('object' == typeof window) return window;
|
|
46
|
+
}
|
|
47
|
+
})();
|
|
48
|
+
})();
|
|
49
|
+
(()=>{
|
|
50
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
51
|
+
})();
|
|
52
|
+
(()=>{
|
|
53
|
+
__webpack_require__.r = (exports)=>{
|
|
54
|
+
if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports, Symbol.toStringTag, {
|
|
55
|
+
value: 'Module'
|
|
56
|
+
});
|
|
57
|
+
Object.defineProperty(exports, '__esModule', {
|
|
58
|
+
value: true
|
|
59
|
+
});
|
|
60
|
+
};
|
|
61
|
+
})();
|
|
62
|
+
(()=>{
|
|
63
|
+
__webpack_require__.nmd = (module)=>{
|
|
64
|
+
module.paths = [];
|
|
65
|
+
if (!module.children) module.children = [];
|
|
66
|
+
return module;
|
|
67
|
+
};
|
|
68
|
+
})();
|
|
69
|
+
export { __webpack_require__ };
|
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
import { type BuiltinPlugin, BuiltinPluginName } from '../binding';
|
|
2
2
|
import { RspackBuiltinPlugin } from './base';
|
|
3
|
+
import type { Module } from '../Module';
|
|
4
|
+
export interface DeterministicModuleIdsPluginOptions {
|
|
5
|
+
context?: string;
|
|
6
|
+
test?: (module: Module) => boolean;
|
|
7
|
+
maxLength?: number;
|
|
8
|
+
salt?: number;
|
|
9
|
+
fixedLength?: boolean;
|
|
10
|
+
failOnConflict?: boolean;
|
|
11
|
+
}
|
|
3
12
|
export declare class DeterministicModuleIdsPlugin extends RspackBuiltinPlugin {
|
|
13
|
+
private options;
|
|
4
14
|
name: BuiltinPluginName;
|
|
5
15
|
affectedHooks: 'compilation';
|
|
16
|
+
constructor(options?: DeterministicModuleIdsPluginOptions);
|
|
6
17
|
raw(): BuiltinPlugin;
|
|
7
18
|
}
|
package/dist/exports.d.ts
CHANGED
|
@@ -79,8 +79,9 @@ interface Electron {
|
|
|
79
79
|
ElectronTargetPlugin: typeof ElectronTargetPlugin;
|
|
80
80
|
}
|
|
81
81
|
export declare const electron: Electron;
|
|
82
|
-
import { HashedModuleIdsPlugin } from './builtin-plugin';
|
|
82
|
+
import { DeterministicModuleIdsPlugin, HashedModuleIdsPlugin } from './builtin-plugin';
|
|
83
83
|
interface Ids {
|
|
84
|
+
DeterministicModuleIdsPlugin: typeof DeterministicModuleIdsPlugin;
|
|
84
85
|
HashedModuleIdsPlugin: typeof HashedModuleIdsPlugin;
|
|
85
86
|
}
|
|
86
87
|
export declare const ids: Ids;
|
package/dist/index.js
CHANGED
|
@@ -1,72 +1,9 @@
|
|
|
1
1
|
/*! LICENSE: index.js.LICENSE.txt */
|
|
2
2
|
import rspack_wasi_browser, { AsyncDependenciesBlock, BuiltinPluginName as external_rspack_wasi_browser_js_BuiltinPluginName, Chunk, ChunkGraph, Chunks as external_rspack_wasi_browser_js_Chunks, ConcatenatedModule, ContextModule, Dependency, EnforceExtension, EntryDependency, ExternalModule, JsCoordinator, JsLoaderState, JsRspackSeverity, Module, ModuleGraphConnection, NormalModule, RawRuleSetConditionType, RegisterJsTapKind, ResolverFactory as external_rspack_wasi_browser_js_ResolverFactory, async as external_rspack_wasi_browser_js_async, cleanupGlobalTrace, formatDiagnostic, registerGlobalTrace, sync, syncTraceEvent, transformSync as external_rspack_wasi_browser_js_transformSync } from "./rspack.wasi-browser.js";
|
|
3
3
|
import { AsyncParallelHook, AsyncSeriesBailHook, HookMap, SyncBailHook, SyncHook, SyncWaterfallHook } from "@rspack/lite-tapable";
|
|
4
|
+
import { __webpack_require__ } from "./612.js";
|
|
4
5
|
import * as __rspack_external__rspack_wasi_browser_js_bd433424 from "./rspack.wasi-browser.js";
|
|
5
6
|
import * as __rspack_external__rspack_lite_tapable_c6bdf810 from "@rspack/lite-tapable";
|
|
6
|
-
var __webpack_modules__ = {};
|
|
7
|
-
var __webpack_module_cache__ = {};
|
|
8
|
-
function __webpack_require__(moduleId) {
|
|
9
|
-
var cachedModule = __webpack_module_cache__[moduleId];
|
|
10
|
-
if (void 0 !== cachedModule) return cachedModule.exports;
|
|
11
|
-
var module = __webpack_module_cache__[moduleId] = {
|
|
12
|
-
exports: {}
|
|
13
|
-
};
|
|
14
|
-
__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
15
|
-
return module.exports;
|
|
16
|
-
}
|
|
17
|
-
__webpack_require__.m = __webpack_modules__;
|
|
18
|
-
(()=>{
|
|
19
|
-
__webpack_require__.n = (module)=>{
|
|
20
|
-
var getter = module && module.__esModule ? ()=>module['default'] : ()=>module;
|
|
21
|
-
__webpack_require__.d(getter, {
|
|
22
|
-
a: getter
|
|
23
|
-
});
|
|
24
|
-
return getter;
|
|
25
|
-
};
|
|
26
|
-
})();
|
|
27
|
-
(()=>{
|
|
28
|
-
__webpack_require__.d = (exports, definition)=>{
|
|
29
|
-
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) Object.defineProperty(exports, key, {
|
|
30
|
-
enumerable: true,
|
|
31
|
-
get: definition[key]
|
|
32
|
-
});
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
35
|
-
(()=>{
|
|
36
|
-
__webpack_require__.add = function(modules) {
|
|
37
|
-
Object.assign(__webpack_require__.m, modules);
|
|
38
|
-
};
|
|
39
|
-
})();
|
|
40
|
-
(()=>{
|
|
41
|
-
__webpack_require__.g = (()=>{
|
|
42
|
-
if ('object' == typeof globalThis) return globalThis;
|
|
43
|
-
try {
|
|
44
|
-
return this || new Function('return this')();
|
|
45
|
-
} catch (e) {
|
|
46
|
-
if ('object' == typeof window) return window;
|
|
47
|
-
}
|
|
48
|
-
})();
|
|
49
|
-
})();
|
|
50
|
-
(()=>{
|
|
51
|
-
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
52
|
-
})();
|
|
53
|
-
(()=>{
|
|
54
|
-
__webpack_require__.r = (exports)=>{
|
|
55
|
-
if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports, Symbol.toStringTag, {
|
|
56
|
-
value: 'Module'
|
|
57
|
-
});
|
|
58
|
-
Object.defineProperty(exports, '__esModule', {
|
|
59
|
-
value: true
|
|
60
|
-
});
|
|
61
|
-
};
|
|
62
|
-
})();
|
|
63
|
-
(()=>{
|
|
64
|
-
__webpack_require__.nmd = (module)=>{
|
|
65
|
-
module.paths = [];
|
|
66
|
-
if (!module.children) module.children = [];
|
|
67
|
-
return module;
|
|
68
|
-
};
|
|
69
|
-
})();
|
|
70
7
|
__webpack_require__.add({
|
|
71
8
|
"../../node_modules/.pnpm/asn1.js@4.10.1/node_modules/asn1.js/lib/asn1.js" (__unused_rspack_module, exports, __webpack_require__) {
|
|
72
9
|
var asn1 = exports;
|
|
@@ -8689,7 +8626,7 @@ __webpack_require__.add({
|
|
|
8689
8626
|
module.exports = modes;
|
|
8690
8627
|
},
|
|
8691
8628
|
"../../node_modules/.pnpm/browserify-aes@1.2.0/node_modules/browserify-aes/modes/ofb.js" (__unused_rspack_module, exports, __webpack_require__) {
|
|
8692
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
8629
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
8693
8630
|
var xor = __webpack_require__("../../node_modules/.pnpm/buffer-xor@1.0.3/node_modules/buffer-xor/index.js");
|
|
8694
8631
|
function getBlock(self1) {
|
|
8695
8632
|
self1._prev = self1._cipher.encryptBlock(self1._prev);
|
|
@@ -9206,7 +9143,7 @@ __webpack_require__.add({
|
|
|
9206
9143
|
module.exports = verify;
|
|
9207
9144
|
},
|
|
9208
9145
|
"../../node_modules/.pnpm/browserify-zlib@0.2.0/node_modules/browserify-zlib/lib/binding.js" (__unused_rspack_module, exports, __webpack_require__) {
|
|
9209
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
9146
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
9210
9147
|
var process = __webpack_require__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
|
|
9211
9148
|
var assert = __webpack_require__("../../node_modules/.pnpm/assert@2.1.0/node_modules/assert/build/assert.js");
|
|
9212
9149
|
var Zstream = __webpack_require__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/zstream.js");
|
|
@@ -9881,7 +9818,7 @@ __webpack_require__.add({
|
|
|
9881
9818
|
util.inherits(Unzip, Zlib);
|
|
9882
9819
|
},
|
|
9883
9820
|
"../../node_modules/.pnpm/buffer-xor@1.0.3/node_modules/buffer-xor/index.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
9884
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
9821
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
9885
9822
|
module.exports = function(a, b) {
|
|
9886
9823
|
var length = Math.min(a.length, b.length);
|
|
9887
9824
|
var buffer = new Buffer(length);
|
|
@@ -11247,7 +11184,7 @@ __webpack_require__.add({
|
|
|
11247
11184
|
}
|
|
11248
11185
|
},
|
|
11249
11186
|
"../../node_modules/.pnpm/create-ecdh@4.0.4/node_modules/create-ecdh/browser.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
11250
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
11187
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
11251
11188
|
var elliptic = __webpack_require__("../../node_modules/.pnpm/elliptic@6.6.1/node_modules/elliptic/lib/elliptic.js");
|
|
11252
11189
|
var BN = __webpack_require__("../../node_modules/.pnpm/bn.js@4.12.3/node_modules/bn.js/lib/bn.js");
|
|
11253
11190
|
module.exports = function(curve) {
|
|
@@ -12632,7 +12569,7 @@ __webpack_require__.add({
|
|
|
12632
12569
|
};
|
|
12633
12570
|
},
|
|
12634
12571
|
"../../node_modules/.pnpm/diffie-hellman@5.0.3/node_modules/diffie-hellman/browser.js" (__unused_rspack_module, exports, __webpack_require__) {
|
|
12635
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
12572
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
12636
12573
|
var generatePrime = __webpack_require__("../../node_modules/.pnpm/diffie-hellman@5.0.3/node_modules/diffie-hellman/lib/generatePrime.js");
|
|
12637
12574
|
var primes = __webpack_require__("../../node_modules/.pnpm/diffie-hellman@5.0.3/node_modules/diffie-hellman/lib/primes.json");
|
|
12638
12575
|
var DH = __webpack_require__("../../node_modules/.pnpm/diffie-hellman@5.0.3/node_modules/diffie-hellman/lib/dh.js");
|
|
@@ -12662,7 +12599,7 @@ __webpack_require__.add({
|
|
|
12662
12599
|
exports.createDiffieHellman = exports.DiffieHellman = createDiffieHellman;
|
|
12663
12600
|
},
|
|
12664
12601
|
"../../node_modules/.pnpm/diffie-hellman@5.0.3/node_modules/diffie-hellman/lib/dh.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
12665
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
12602
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
12666
12603
|
var BN = __webpack_require__("../../node_modules/.pnpm/bn.js@4.12.3/node_modules/bn.js/lib/bn.js");
|
|
12667
12604
|
var MillerRabin = __webpack_require__("../../node_modules/.pnpm/miller-rabin@4.0.1/node_modules/miller-rabin/lib/mr.js");
|
|
12668
12605
|
var millerRabin = new MillerRabin();
|
|
@@ -15788,7 +15725,7 @@ __webpack_require__.add({
|
|
|
15788
15725
|
utils.intFromLE = intFromLE;
|
|
15789
15726
|
},
|
|
15790
15727
|
"../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/CachedInputFileSystem.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
15791
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
15728
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
15792
15729
|
const { nextTick } = __webpack_require__("../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/util/process-browser.js");
|
|
15793
15730
|
const dirname = (path)=>{
|
|
15794
15731
|
let idx = path.length - 1;
|
|
@@ -31091,7 +31028,7 @@ __webpack_require__.add({
|
|
|
31091
31028
|
xhr = null;
|
|
31092
31029
|
},
|
|
31093
31030
|
"../../node_modules/.pnpm/stream-http@3.2.0/node_modules/stream-http/lib/request.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
31094
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
31031
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
31095
31032
|
var process = __webpack_require__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
|
|
31096
31033
|
var capability = __webpack_require__("../../node_modules/.pnpm/stream-http@3.2.0/node_modules/stream-http/lib/capability.js");
|
|
31097
31034
|
var inherits = __webpack_require__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js");
|
|
@@ -31343,7 +31280,7 @@ __webpack_require__.add({
|
|
|
31343
31280
|
},
|
|
31344
31281
|
"../../node_modules/.pnpm/stream-http@3.2.0/node_modules/stream-http/lib/response.js" (__unused_rspack_module, exports, __webpack_require__) {
|
|
31345
31282
|
var process = __webpack_require__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
|
|
31346
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
31283
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
31347
31284
|
var capability = __webpack_require__("../../node_modules/.pnpm/stream-http@3.2.0/node_modules/stream-http/lib/capability.js");
|
|
31348
31285
|
var inherits = __webpack_require__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js");
|
|
31349
31286
|
var stream = __webpack_require__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/readable-browser.js");
|
|
@@ -34483,7 +34420,7 @@ __webpack_require__.add({
|
|
|
34483
34420
|
};
|
|
34484
34421
|
},
|
|
34485
34422
|
"../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/CachedSource.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
34486
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
34423
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
34487
34424
|
const Source = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/Source.js");
|
|
34488
34425
|
const streamAndGetSourceAndMap = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/helpers/streamAndGetSourceAndMap.js");
|
|
34489
34426
|
const streamChunksOfRawSource = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/helpers/streamChunksOfRawSource.js");
|
|
@@ -34708,7 +34645,7 @@ __webpack_require__.add({
|
|
|
34708
34645
|
module.exports = CompatSource;
|
|
34709
34646
|
},
|
|
34710
34647
|
"../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/ConcatSource.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
34711
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
34648
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
34712
34649
|
const RawSource = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/RawSource.js");
|
|
34713
34650
|
const Source = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/Source.js");
|
|
34714
34651
|
const { getMap, getSourceAndMap } = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/helpers/getFromStreamChunks.js");
|
|
@@ -34884,7 +34821,7 @@ __webpack_require__.add({
|
|
|
34884
34821
|
module.exports = ConcatSource;
|
|
34885
34822
|
},
|
|
34886
34823
|
"../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/OriginalSource.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
34887
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
34824
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
34888
34825
|
const Source = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/Source.js");
|
|
34889
34826
|
const { getMap, getSourceAndMap } = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/helpers/getFromStreamChunks.js");
|
|
34890
34827
|
const getGeneratedSourceInfo = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/helpers/getGeneratedSourceInfo.js");
|
|
@@ -34985,7 +34922,7 @@ __webpack_require__.add({
|
|
|
34985
34922
|
module.exports = OriginalSource;
|
|
34986
34923
|
},
|
|
34987
34924
|
"../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/PrefixSource.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
34988
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
34925
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
34989
34926
|
const RawSource = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/RawSource.js");
|
|
34990
34927
|
const Source = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/Source.js");
|
|
34991
34928
|
const { getMap, getSourceAndMap } = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/helpers/getFromStreamChunks.js");
|
|
@@ -35044,7 +34981,7 @@ __webpack_require__.add({
|
|
|
35044
34981
|
module.exports = PrefixSource;
|
|
35045
34982
|
},
|
|
35046
34983
|
"../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/RawSource.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
35047
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
34984
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
35048
34985
|
const Source = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/Source.js");
|
|
35049
34986
|
const streamChunksOfRawSource = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/helpers/streamChunksOfRawSource.js");
|
|
35050
34987
|
const { internString, isDualStringBufferCachingEnabled } = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/helpers/stringBufferUtils.js");
|
|
@@ -35402,7 +35339,7 @@ __webpack_require__.add({
|
|
|
35402
35339
|
module.exports = SizeOnlySource;
|
|
35403
35340
|
},
|
|
35404
35341
|
"../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/Source.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
35405
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
35342
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
35406
35343
|
class Source {
|
|
35407
35344
|
source() {
|
|
35408
35345
|
throw new Error("Abstract");
|
|
@@ -35431,7 +35368,7 @@ __webpack_require__.add({
|
|
|
35431
35368
|
module.exports = Source;
|
|
35432
35369
|
},
|
|
35433
35370
|
"../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/SourceMapSource.js" (module, __unused_rspack_exports, __webpack_require__) {
|
|
35434
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
35371
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
35435
35372
|
const Source = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/Source.js");
|
|
35436
35373
|
const { getMap, getSourceAndMap } = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/helpers/getFromStreamChunks.js");
|
|
35437
35374
|
const streamChunksOfCombinedSourceMap = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/helpers/streamChunksOfCombinedSourceMap.js");
|
|
@@ -36559,34 +36496,34 @@ __webpack_require__.add({
|
|
|
36559
36496
|
}
|
|
36560
36497
|
},
|
|
36561
36498
|
"./src/browser/buffer.ts" (__unused_rspack_module, __webpack_exports__, __webpack_require__) {
|
|
36499
|
+
var _napi_rs_wasm_runtime_fs__rspack_import_0 = __webpack_require__("../../node_modules/.pnpm/@napi-rs+wasm-runtime@1.1.4_@emnapi+core@1.10.0_@emnapi+runtime@1.10.0/node_modules/@napi-rs/wasm-runtime/dist/fs.js");
|
|
36562
36500
|
__webpack_require__.d(__webpack_exports__, {
|
|
36563
36501
|
h: ()=>_napi_rs_wasm_runtime_fs__rspack_import_0.hp
|
|
36564
36502
|
});
|
|
36565
|
-
var _napi_rs_wasm_runtime_fs__rspack_import_0 = __webpack_require__("../../node_modules/.pnpm/@napi-rs+wasm-runtime@1.1.4_@emnapi+core@1.10.0_@emnapi+runtime@1.10.0/node_modules/@napi-rs/wasm-runtime/dist/fs.js");
|
|
36566
36503
|
},
|
|
36567
36504
|
"./src/browser/fs.ts" (__unused_rspack_module, __webpack_exports__, __webpack_require__) {
|
|
36568
36505
|
__webpack_require__.r(__webpack_exports__);
|
|
36569
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
36570
|
-
default: ()=>__rspack_default_export,
|
|
36571
|
-
existsSync: ()=>existsSync,
|
|
36572
|
-
fs: ()=>fs,
|
|
36573
|
-
lstat: ()=>lstat,
|
|
36574
|
-
memfs: ()=>memfs,
|
|
36575
|
-
readFileSync: ()=>readFileSync,
|
|
36576
|
-
readdir: ()=>readdir,
|
|
36577
|
-
readdirSync: ()=>readdirSync,
|
|
36578
|
-
volume: ()=>volume,
|
|
36579
|
-
watch: ()=>watch
|
|
36580
|
-
});
|
|
36581
36506
|
var _napi_rs_wasm_runtime_fs__rspack_import_0 = __webpack_require__("../../node_modules/.pnpm/@napi-rs+wasm-runtime@1.1.4_@emnapi+core@1.10.0_@emnapi+runtime@1.10.0/node_modules/@napi-rs/wasm-runtime/dist/fs.js");
|
|
36582
|
-
var _rspack_binding__rspack_import_1 = __webpack_require__("@rspack/binding?
|
|
36507
|
+
var _rspack_binding__rspack_import_1 = __webpack_require__("@rspack/binding?1a47");
|
|
36583
36508
|
const fs = _rspack_binding__rspack_import_1.__fs;
|
|
36584
36509
|
const volume = _rspack_binding__rspack_import_1.__volume;
|
|
36585
36510
|
const memfs = _napi_rs_wasm_runtime_fs__rspack_import_0.tO;
|
|
36586
36511
|
const { readFileSync, readdirSync, lstat, existsSync, readdir, watch } = fs;
|
|
36587
36512
|
const __rspack_default_export = fs;
|
|
36513
|
+
__webpack_require__.d(__webpack_exports__, {}, {
|
|
36514
|
+
default: __rspack_default_export,
|
|
36515
|
+
existsSync: existsSync,
|
|
36516
|
+
fs: fs,
|
|
36517
|
+
lstat: lstat,
|
|
36518
|
+
memfs: memfs,
|
|
36519
|
+
readFileSync: readFileSync,
|
|
36520
|
+
readdir: readdir,
|
|
36521
|
+
readdirSync: readdirSync,
|
|
36522
|
+
volume: volume,
|
|
36523
|
+
watch: watch
|
|
36524
|
+
});
|
|
36588
36525
|
},
|
|
36589
|
-
"@rspack/binding?
|
|
36526
|
+
"@rspack/binding?1a47" (module) {
|
|
36590
36527
|
module.exports = __rspack_external__rspack_wasi_browser_js_bd433424;
|
|
36591
36528
|
},
|
|
36592
36529
|
"?7763" () {},
|
|
@@ -36607,10 +36544,6 @@ __webpack_require__.add({
|
|
|
36607
36544
|
};
|
|
36608
36545
|
},
|
|
36609
36546
|
"../../node_modules/.pnpm/@napi-rs+wasm-runtime@1.1.4_@emnapi+core@1.10.0_@emnapi+runtime@1.10.0/node_modules/@napi-rs/wasm-runtime/dist/fs.js" (__unused_rspack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
36610
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
36611
|
-
hp: ()=>Buffer,
|
|
36612
|
-
tO: ()=>memfs
|
|
36613
|
-
});
|
|
36614
36547
|
function _mergeNamespaces(n, m) {
|
|
36615
36548
|
m.forEach(function(e) {
|
|
36616
36549
|
e && 'string' != typeof e && !Array.isArray(e) && Object.keys(e).forEach(function(k) {
|
|
@@ -55187,21 +55120,26 @@ __webpack_require__.add({
|
|
|
55187
55120
|
libExports
|
|
55188
55121
|
]);
|
|
55189
55122
|
const { createFsFromVolume, Volume, fs, memfs } = memfsExported;
|
|
55123
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
55124
|
+
hp: ()=>Buffer
|
|
55125
|
+
}, {
|
|
55126
|
+
tO: memfs
|
|
55127
|
+
});
|
|
55190
55128
|
},
|
|
55191
55129
|
"../../node_modules/.pnpm/browserify-aes@1.2.0/node_modules/browserify-aes/modes/list.json" (module) {
|
|
55192
|
-
module.exports = JSON.parse('{"aes-128-ecb":{"cipher":"AES","key":128,"iv":0,"mode":"ECB","type":"block"},"aes-192-ecb":{"cipher":"AES","key":192,"iv":0,"mode":"ECB","type":"block"},"aes-256-ecb":{"cipher":"AES","key":256,"iv":0,"mode":"ECB","type":"block"},"aes-128-cbc":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes-192-cbc":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes-256-cbc":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes128":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes192":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes256":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes-128-cfb":{"cipher":"AES","key":128,"iv":16,"mode":"CFB","type":"stream"},"aes-192-cfb":{"cipher":"AES","key":192,"iv":16,"mode":"CFB","type":"stream"},"aes-256-cfb":{"cipher":"AES","key":256,"iv":16,"mode":"CFB","type":"stream"},"aes-128-cfb8":{"cipher":"AES","key":128,"iv":16,"mode":"CFB8","type":"stream"},"aes-192-cfb8":{"cipher":"AES","key":192,"iv":16,"mode":"CFB8","type":"stream"},"aes-256-cfb8":{"cipher":"AES","key":256,"iv":16,"mode":"CFB8","type":"stream"},"aes-128-cfb1":{"cipher":"AES","key":128,"iv":16,"mode":"CFB1","type":"stream"},"aes-192-cfb1":{"cipher":"AES","key":192,"iv":16,"mode":"CFB1","type":"stream"},"aes-256-cfb1":{"cipher":"AES","key":256,"iv":16,"mode":"CFB1","type":"stream"},"aes-128-ofb":{"cipher":"AES","key":128,"iv":16,"mode":"OFB","type":"stream"},"aes-192-ofb":{"cipher":"AES","key":192,"iv":16,"mode":"OFB","type":"stream"},"aes-256-ofb":{"cipher":"AES","key":256,"iv":16,"mode":"OFB","type":"stream"},"aes-128-ctr":{"cipher":"AES","key":128,"iv":16,"mode":"CTR","type":"stream"},"aes-192-ctr":{"cipher":"AES","key":192,"iv":16,"mode":"CTR","type":"stream"},"aes-256-ctr":{"cipher":"AES","key":256,"iv":16,"mode":"CTR","type":"stream"},"aes-128-gcm":{"cipher":"AES","key":128,"iv":12,"mode":"GCM","type":"auth"},"aes-192-gcm":{"cipher":"AES","key":192,"iv":12,"mode":"GCM","type":"auth"},"aes-256-gcm":{"cipher":"AES","key":256,"iv":12,"mode":"GCM","type":"auth"}}');
|
|
55130
|
+
module.exports = /*#__PURE__*/ JSON.parse('{"aes-128-ecb":{"cipher":"AES","key":128,"iv":0,"mode":"ECB","type":"block"},"aes-192-ecb":{"cipher":"AES","key":192,"iv":0,"mode":"ECB","type":"block"},"aes-256-ecb":{"cipher":"AES","key":256,"iv":0,"mode":"ECB","type":"block"},"aes-128-cbc":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes-192-cbc":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes-256-cbc":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes128":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes192":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes256":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes-128-cfb":{"cipher":"AES","key":128,"iv":16,"mode":"CFB","type":"stream"},"aes-192-cfb":{"cipher":"AES","key":192,"iv":16,"mode":"CFB","type":"stream"},"aes-256-cfb":{"cipher":"AES","key":256,"iv":16,"mode":"CFB","type":"stream"},"aes-128-cfb8":{"cipher":"AES","key":128,"iv":16,"mode":"CFB8","type":"stream"},"aes-192-cfb8":{"cipher":"AES","key":192,"iv":16,"mode":"CFB8","type":"stream"},"aes-256-cfb8":{"cipher":"AES","key":256,"iv":16,"mode":"CFB8","type":"stream"},"aes-128-cfb1":{"cipher":"AES","key":128,"iv":16,"mode":"CFB1","type":"stream"},"aes-192-cfb1":{"cipher":"AES","key":192,"iv":16,"mode":"CFB1","type":"stream"},"aes-256-cfb1":{"cipher":"AES","key":256,"iv":16,"mode":"CFB1","type":"stream"},"aes-128-ofb":{"cipher":"AES","key":128,"iv":16,"mode":"OFB","type":"stream"},"aes-192-ofb":{"cipher":"AES","key":192,"iv":16,"mode":"OFB","type":"stream"},"aes-256-ofb":{"cipher":"AES","key":256,"iv":16,"mode":"OFB","type":"stream"},"aes-128-ctr":{"cipher":"AES","key":128,"iv":16,"mode":"CTR","type":"stream"},"aes-192-ctr":{"cipher":"AES","key":192,"iv":16,"mode":"CTR","type":"stream"},"aes-256-ctr":{"cipher":"AES","key":256,"iv":16,"mode":"CTR","type":"stream"},"aes-128-gcm":{"cipher":"AES","key":128,"iv":12,"mode":"GCM","type":"auth"},"aes-192-gcm":{"cipher":"AES","key":192,"iv":12,"mode":"GCM","type":"auth"},"aes-256-gcm":{"cipher":"AES","key":256,"iv":12,"mode":"GCM","type":"auth"}}');
|
|
55193
55131
|
},
|
|
55194
55132
|
"../../node_modules/.pnpm/browserify-sign@4.2.5/node_modules/browserify-sign/browser/algorithms.json" (module) {
|
|
55195
|
-
module.exports = JSON.parse('{"sha224WithRSAEncryption":{"sign":"rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"RSA-SHA224":{"sign":"ecdsa/rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"sha256WithRSAEncryption":{"sign":"rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"RSA-SHA256":{"sign":"ecdsa/rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"sha384WithRSAEncryption":{"sign":"rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"RSA-SHA384":{"sign":"ecdsa/rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"sha512WithRSAEncryption":{"sign":"rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA512":{"sign":"ecdsa/rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA1":{"sign":"rsa","hash":"sha1","id":"3021300906052b0e03021a05000414"},"ecdsa-with-SHA1":{"sign":"ecdsa","hash":"sha1","id":""},"sha256":{"sign":"ecdsa","hash":"sha256","id":""},"sha224":{"sign":"ecdsa","hash":"sha224","id":""},"sha384":{"sign":"ecdsa","hash":"sha384","id":""},"sha512":{"sign":"ecdsa","hash":"sha512","id":""},"DSA-SHA":{"sign":"dsa","hash":"sha1","id":""},"DSA-SHA1":{"sign":"dsa","hash":"sha1","id":""},"DSA":{"sign":"dsa","hash":"sha1","id":""},"DSA-WITH-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-WITH-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-WITH-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-WITH-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-RIPEMD160":{"sign":"dsa","hash":"rmd160","id":""},"ripemd160WithRSA":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"RSA-RIPEMD160":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"md5WithRSAEncryption":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"},"RSA-MD5":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"}}');
|
|
55133
|
+
module.exports = /*#__PURE__*/ JSON.parse('{"sha224WithRSAEncryption":{"sign":"rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"RSA-SHA224":{"sign":"ecdsa/rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"sha256WithRSAEncryption":{"sign":"rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"RSA-SHA256":{"sign":"ecdsa/rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"sha384WithRSAEncryption":{"sign":"rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"RSA-SHA384":{"sign":"ecdsa/rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"sha512WithRSAEncryption":{"sign":"rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA512":{"sign":"ecdsa/rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA1":{"sign":"rsa","hash":"sha1","id":"3021300906052b0e03021a05000414"},"ecdsa-with-SHA1":{"sign":"ecdsa","hash":"sha1","id":""},"sha256":{"sign":"ecdsa","hash":"sha256","id":""},"sha224":{"sign":"ecdsa","hash":"sha224","id":""},"sha384":{"sign":"ecdsa","hash":"sha384","id":""},"sha512":{"sign":"ecdsa","hash":"sha512","id":""},"DSA-SHA":{"sign":"dsa","hash":"sha1","id":""},"DSA-SHA1":{"sign":"dsa","hash":"sha1","id":""},"DSA":{"sign":"dsa","hash":"sha1","id":""},"DSA-WITH-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-WITH-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-WITH-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-WITH-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-RIPEMD160":{"sign":"dsa","hash":"rmd160","id":""},"ripemd160WithRSA":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"RSA-RIPEMD160":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"md5WithRSAEncryption":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"},"RSA-MD5":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"}}');
|
|
55196
55134
|
},
|
|
55197
55135
|
"../../node_modules/.pnpm/browserify-sign@4.2.5/node_modules/browserify-sign/browser/curves.json" (module) {
|
|
55198
|
-
module.exports = JSON.parse('{"1.3.132.0.10":"secp256k1","1.3.132.0.33":"p224","1.2.840.10045.3.1.1":"p192","1.2.840.10045.3.1.7":"p256","1.3.132.0.34":"p384","1.3.132.0.35":"p521"}');
|
|
55136
|
+
module.exports = /*#__PURE__*/ JSON.parse('{"1.3.132.0.10":"secp256k1","1.3.132.0.33":"p224","1.2.840.10045.3.1.1":"p192","1.2.840.10045.3.1.7":"p256","1.3.132.0.34":"p384","1.3.132.0.35":"p521"}');
|
|
55199
55137
|
},
|
|
55200
55138
|
"../../node_modules/.pnpm/constants-browserify@1.0.0/node_modules/constants-browserify/constants.json" (module) {
|
|
55201
|
-
module.exports = JSON.parse('{"O_RDONLY":0,"O_WRONLY":1,"O_RDWR":2,"S_IFMT":61440,"S_IFREG":32768,"S_IFDIR":16384,"S_IFCHR":8192,"S_IFBLK":24576,"S_IFIFO":4096,"S_IFLNK":40960,"S_IFSOCK":49152,"O_CREAT":512,"O_EXCL":2048,"O_NOCTTY":131072,"O_TRUNC":1024,"O_APPEND":8,"O_DIRECTORY":1048576,"O_NOFOLLOW":256,"O_SYNC":128,"O_SYMLINK":2097152,"O_NONBLOCK":4,"S_IRWXU":448,"S_IRUSR":256,"S_IWUSR":128,"S_IXUSR":64,"S_IRWXG":56,"S_IRGRP":32,"S_IWGRP":16,"S_IXGRP":8,"S_IRWXO":7,"S_IROTH":4,"S_IWOTH":2,"S_IXOTH":1,"E2BIG":7,"EACCES":13,"EADDRINUSE":48,"EADDRNOTAVAIL":49,"EAFNOSUPPORT":47,"EAGAIN":35,"EALREADY":37,"EBADF":9,"EBADMSG":94,"EBUSY":16,"ECANCELED":89,"ECHILD":10,"ECONNABORTED":53,"ECONNREFUSED":61,"ECONNRESET":54,"EDEADLK":11,"EDESTADDRREQ":39,"EDOM":33,"EDQUOT":69,"EEXIST":17,"EFAULT":14,"EFBIG":27,"EHOSTUNREACH":65,"EIDRM":90,"EILSEQ":92,"EINPROGRESS":36,"EINTR":4,"EINVAL":22,"EIO":5,"EISCONN":56,"EISDIR":21,"ELOOP":62,"EMFILE":24,"EMLINK":31,"EMSGSIZE":40,"EMULTIHOP":95,"ENAMETOOLONG":63,"ENETDOWN":50,"ENETRESET":52,"ENETUNREACH":51,"ENFILE":23,"ENOBUFS":55,"ENODATA":96,"ENODEV":19,"ENOENT":2,"ENOEXEC":8,"ENOLCK":77,"ENOLINK":97,"ENOMEM":12,"ENOMSG":91,"ENOPROTOOPT":42,"ENOSPC":28,"ENOSR":98,"ENOSTR":99,"ENOSYS":78,"ENOTCONN":57,"ENOTDIR":20,"ENOTEMPTY":66,"ENOTSOCK":38,"ENOTSUP":45,"ENOTTY":25,"ENXIO":6,"EOPNOTSUPP":102,"EOVERFLOW":84,"EPERM":1,"EPIPE":32,"EPROTO":100,"EPROTONOSUPPORT":43,"EPROTOTYPE":41,"ERANGE":34,"EROFS":30,"ESPIPE":29,"ESRCH":3,"ESTALE":70,"ETIME":101,"ETIMEDOUT":60,"ETXTBSY":26,"EWOULDBLOCK":35,"EXDEV":18,"SIGHUP":1,"SIGINT":2,"SIGQUIT":3,"SIGILL":4,"SIGTRAP":5,"SIGABRT":6,"SIGIOT":6,"SIGBUS":10,"SIGFPE":8,"SIGKILL":9,"SIGUSR1":30,"SIGSEGV":11,"SIGUSR2":31,"SIGPIPE":13,"SIGALRM":14,"SIGTERM":15,"SIGCHLD":20,"SIGCONT":19,"SIGSTOP":17,"SIGTSTP":18,"SIGTTIN":21,"SIGTTOU":22,"SIGURG":16,"SIGXCPU":24,"SIGXFSZ":25,"SIGVTALRM":26,"SIGPROF":27,"SIGWINCH":28,"SIGIO":23,"SIGSYS":12,"SSL_OP_ALL":2147486719,"SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION":262144,"SSL_OP_CIPHER_SERVER_PREFERENCE":4194304,"SSL_OP_CISCO_ANYCONNECT":32768,"SSL_OP_COOKIE_EXCHANGE":8192,"SSL_OP_CRYPTOPRO_TLSEXT_BUG":2147483648,"SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS":2048,"SSL_OP_EPHEMERAL_RSA":0,"SSL_OP_LEGACY_SERVER_CONNECT":4,"SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER":32,"SSL_OP_MICROSOFT_SESS_ID_BUG":1,"SSL_OP_MSIE_SSLV2_RSA_PADDING":0,"SSL_OP_NETSCAPE_CA_DN_BUG":536870912,"SSL_OP_NETSCAPE_CHALLENGE_BUG":2,"SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG":1073741824,"SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG":8,"SSL_OP_NO_COMPRESSION":131072,"SSL_OP_NO_QUERY_MTU":4096,"SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION":65536,"SSL_OP_NO_SSLv2":16777216,"SSL_OP_NO_SSLv3":33554432,"SSL_OP_NO_TICKET":16384,"SSL_OP_NO_TLSv1":67108864,"SSL_OP_NO_TLSv1_1":268435456,"SSL_OP_NO_TLSv1_2":134217728,"SSL_OP_PKCS1_CHECK_1":0,"SSL_OP_PKCS1_CHECK_2":0,"SSL_OP_SINGLE_DH_USE":1048576,"SSL_OP_SINGLE_ECDH_USE":524288,"SSL_OP_SSLEAY_080_CLIENT_DH_BUG":128,"SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG":0,"SSL_OP_TLS_BLOCK_PADDING_BUG":512,"SSL_OP_TLS_D5_BUG":256,"SSL_OP_TLS_ROLLBACK_BUG":8388608,"ENGINE_METHOD_DSA":2,"ENGINE_METHOD_DH":4,"ENGINE_METHOD_RAND":8,"ENGINE_METHOD_ECDH":16,"ENGINE_METHOD_ECDSA":32,"ENGINE_METHOD_CIPHERS":64,"ENGINE_METHOD_DIGESTS":128,"ENGINE_METHOD_STORE":256,"ENGINE_METHOD_PKEY_METHS":512,"ENGINE_METHOD_PKEY_ASN1_METHS":1024,"ENGINE_METHOD_ALL":65535,"ENGINE_METHOD_NONE":0,"DH_CHECK_P_NOT_SAFE_PRIME":2,"DH_CHECK_P_NOT_PRIME":1,"DH_UNABLE_TO_CHECK_GENERATOR":4,"DH_NOT_SUITABLE_GENERATOR":8,"NPN_ENABLED":1,"RSA_PKCS1_PADDING":1,"RSA_SSLV23_PADDING":2,"RSA_NO_PADDING":3,"RSA_PKCS1_OAEP_PADDING":4,"RSA_X931_PADDING":5,"RSA_PKCS1_PSS_PADDING":6,"POINT_CONVERSION_COMPRESSED":2,"POINT_CONVERSION_UNCOMPRESSED":4,"POINT_CONVERSION_HYBRID":6,"F_OK":0,"R_OK":4,"W_OK":2,"X_OK":1,"UV_UDP_REUSEADDR":4}');
|
|
55139
|
+
module.exports = /*#__PURE__*/ JSON.parse('{"O_RDONLY":0,"O_WRONLY":1,"O_RDWR":2,"S_IFMT":61440,"S_IFREG":32768,"S_IFDIR":16384,"S_IFCHR":8192,"S_IFBLK":24576,"S_IFIFO":4096,"S_IFLNK":40960,"S_IFSOCK":49152,"O_CREAT":512,"O_EXCL":2048,"O_NOCTTY":131072,"O_TRUNC":1024,"O_APPEND":8,"O_DIRECTORY":1048576,"O_NOFOLLOW":256,"O_SYNC":128,"O_SYMLINK":2097152,"O_NONBLOCK":4,"S_IRWXU":448,"S_IRUSR":256,"S_IWUSR":128,"S_IXUSR":64,"S_IRWXG":56,"S_IRGRP":32,"S_IWGRP":16,"S_IXGRP":8,"S_IRWXO":7,"S_IROTH":4,"S_IWOTH":2,"S_IXOTH":1,"E2BIG":7,"EACCES":13,"EADDRINUSE":48,"EADDRNOTAVAIL":49,"EAFNOSUPPORT":47,"EAGAIN":35,"EALREADY":37,"EBADF":9,"EBADMSG":94,"EBUSY":16,"ECANCELED":89,"ECHILD":10,"ECONNABORTED":53,"ECONNREFUSED":61,"ECONNRESET":54,"EDEADLK":11,"EDESTADDRREQ":39,"EDOM":33,"EDQUOT":69,"EEXIST":17,"EFAULT":14,"EFBIG":27,"EHOSTUNREACH":65,"EIDRM":90,"EILSEQ":92,"EINPROGRESS":36,"EINTR":4,"EINVAL":22,"EIO":5,"EISCONN":56,"EISDIR":21,"ELOOP":62,"EMFILE":24,"EMLINK":31,"EMSGSIZE":40,"EMULTIHOP":95,"ENAMETOOLONG":63,"ENETDOWN":50,"ENETRESET":52,"ENETUNREACH":51,"ENFILE":23,"ENOBUFS":55,"ENODATA":96,"ENODEV":19,"ENOENT":2,"ENOEXEC":8,"ENOLCK":77,"ENOLINK":97,"ENOMEM":12,"ENOMSG":91,"ENOPROTOOPT":42,"ENOSPC":28,"ENOSR":98,"ENOSTR":99,"ENOSYS":78,"ENOTCONN":57,"ENOTDIR":20,"ENOTEMPTY":66,"ENOTSOCK":38,"ENOTSUP":45,"ENOTTY":25,"ENXIO":6,"EOPNOTSUPP":102,"EOVERFLOW":84,"EPERM":1,"EPIPE":32,"EPROTO":100,"EPROTONOSUPPORT":43,"EPROTOTYPE":41,"ERANGE":34,"EROFS":30,"ESPIPE":29,"ESRCH":3,"ESTALE":70,"ETIME":101,"ETIMEDOUT":60,"ETXTBSY":26,"EWOULDBLOCK":35,"EXDEV":18,"SIGHUP":1,"SIGINT":2,"SIGQUIT":3,"SIGILL":4,"SIGTRAP":5,"SIGABRT":6,"SIGIOT":6,"SIGBUS":10,"SIGFPE":8,"SIGKILL":9,"SIGUSR1":30,"SIGSEGV":11,"SIGUSR2":31,"SIGPIPE":13,"SIGALRM":14,"SIGTERM":15,"SIGCHLD":20,"SIGCONT":19,"SIGSTOP":17,"SIGTSTP":18,"SIGTTIN":21,"SIGTTOU":22,"SIGURG":16,"SIGXCPU":24,"SIGXFSZ":25,"SIGVTALRM":26,"SIGPROF":27,"SIGWINCH":28,"SIGIO":23,"SIGSYS":12,"SSL_OP_ALL":2147486719,"SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION":262144,"SSL_OP_CIPHER_SERVER_PREFERENCE":4194304,"SSL_OP_CISCO_ANYCONNECT":32768,"SSL_OP_COOKIE_EXCHANGE":8192,"SSL_OP_CRYPTOPRO_TLSEXT_BUG":2147483648,"SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS":2048,"SSL_OP_EPHEMERAL_RSA":0,"SSL_OP_LEGACY_SERVER_CONNECT":4,"SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER":32,"SSL_OP_MICROSOFT_SESS_ID_BUG":1,"SSL_OP_MSIE_SSLV2_RSA_PADDING":0,"SSL_OP_NETSCAPE_CA_DN_BUG":536870912,"SSL_OP_NETSCAPE_CHALLENGE_BUG":2,"SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG":1073741824,"SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG":8,"SSL_OP_NO_COMPRESSION":131072,"SSL_OP_NO_QUERY_MTU":4096,"SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION":65536,"SSL_OP_NO_SSLv2":16777216,"SSL_OP_NO_SSLv3":33554432,"SSL_OP_NO_TICKET":16384,"SSL_OP_NO_TLSv1":67108864,"SSL_OP_NO_TLSv1_1":268435456,"SSL_OP_NO_TLSv1_2":134217728,"SSL_OP_PKCS1_CHECK_1":0,"SSL_OP_PKCS1_CHECK_2":0,"SSL_OP_SINGLE_DH_USE":1048576,"SSL_OP_SINGLE_ECDH_USE":524288,"SSL_OP_SSLEAY_080_CLIENT_DH_BUG":128,"SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG":0,"SSL_OP_TLS_BLOCK_PADDING_BUG":512,"SSL_OP_TLS_D5_BUG":256,"SSL_OP_TLS_ROLLBACK_BUG":8388608,"ENGINE_METHOD_DSA":2,"ENGINE_METHOD_DH":4,"ENGINE_METHOD_RAND":8,"ENGINE_METHOD_ECDH":16,"ENGINE_METHOD_ECDSA":32,"ENGINE_METHOD_CIPHERS":64,"ENGINE_METHOD_DIGESTS":128,"ENGINE_METHOD_STORE":256,"ENGINE_METHOD_PKEY_METHS":512,"ENGINE_METHOD_PKEY_ASN1_METHS":1024,"ENGINE_METHOD_ALL":65535,"ENGINE_METHOD_NONE":0,"DH_CHECK_P_NOT_SAFE_PRIME":2,"DH_CHECK_P_NOT_PRIME":1,"DH_UNABLE_TO_CHECK_GENERATOR":4,"DH_NOT_SUITABLE_GENERATOR":8,"NPN_ENABLED":1,"RSA_PKCS1_PADDING":1,"RSA_SSLV23_PADDING":2,"RSA_NO_PADDING":3,"RSA_PKCS1_OAEP_PADDING":4,"RSA_X931_PADDING":5,"RSA_PKCS1_PSS_PADDING":6,"POINT_CONVERSION_COMPRESSED":2,"POINT_CONVERSION_UNCOMPRESSED":4,"POINT_CONVERSION_HYBRID":6,"F_OK":0,"R_OK":4,"W_OK":2,"X_OK":1,"UV_UDP_REUSEADDR":4}');
|
|
55202
55140
|
},
|
|
55203
55141
|
"../../node_modules/.pnpm/diffie-hellman@5.0.3/node_modules/diffie-hellman/lib/primes.json" (module) {
|
|
55204
|
-
module.exports = JSON.parse('{"modp1":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a63a3620ffffffffffffffff"},"modp2":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece65381ffffffffffffffff"},"modp5":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca237327ffffffffffffffff"},"modp14":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aacaa68ffffffffffffffff"},"modp15":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a93ad2caffffffffffffffff"},"modp16":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c934063199ffffffffffffffff"},"modp17":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dcc4024ffffffffffffffff"},"modp18":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"}}');
|
|
55142
|
+
module.exports = /*#__PURE__*/ JSON.parse('{"modp1":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a63a3620ffffffffffffffff"},"modp2":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece65381ffffffffffffffff"},"modp5":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca237327ffffffffffffffff"},"modp14":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aacaa68ffffffffffffffff"},"modp15":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a93ad2caffffffffffffffff"},"modp16":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c934063199ffffffffffffffff"},"modp17":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dcc4024ffffffffffffffff"},"modp18":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"}}');
|
|
55205
55143
|
},
|
|
55206
55144
|
"../../node_modules/.pnpm/elliptic@6.6.1/node_modules/elliptic/package.json" (module) {
|
|
55207
55145
|
module.exports = {
|
|
@@ -55209,7 +55147,7 @@ __webpack_require__.add({
|
|
|
55209
55147
|
};
|
|
55210
55148
|
},
|
|
55211
55149
|
"../../node_modules/.pnpm/parse-asn1@5.1.9/node_modules/parse-asn1/aesid.json" (module) {
|
|
55212
|
-
module.exports = JSON.parse('{"2.16.840.1.101.3.4.1.1":"aes-128-ecb","2.16.840.1.101.3.4.1.2":"aes-128-cbc","2.16.840.1.101.3.4.1.3":"aes-128-ofb","2.16.840.1.101.3.4.1.4":"aes-128-cfb","2.16.840.1.101.3.4.1.21":"aes-192-ecb","2.16.840.1.101.3.4.1.22":"aes-192-cbc","2.16.840.1.101.3.4.1.23":"aes-192-ofb","2.16.840.1.101.3.4.1.24":"aes-192-cfb","2.16.840.1.101.3.4.1.41":"aes-256-ecb","2.16.840.1.101.3.4.1.42":"aes-256-cbc","2.16.840.1.101.3.4.1.43":"aes-256-ofb","2.16.840.1.101.3.4.1.44":"aes-256-cfb"}');
|
|
55150
|
+
module.exports = /*#__PURE__*/ JSON.parse('{"2.16.840.1.101.3.4.1.1":"aes-128-ecb","2.16.840.1.101.3.4.1.2":"aes-128-cbc","2.16.840.1.101.3.4.1.3":"aes-128-ofb","2.16.840.1.101.3.4.1.4":"aes-128-cfb","2.16.840.1.101.3.4.1.21":"aes-192-ecb","2.16.840.1.101.3.4.1.22":"aes-192-cbc","2.16.840.1.101.3.4.1.23":"aes-192-ofb","2.16.840.1.101.3.4.1.24":"aes-192-cfb","2.16.840.1.101.3.4.1.41":"aes-256-ecb","2.16.840.1.101.3.4.1.42":"aes-256-cbc","2.16.840.1.101.3.4.1.43":"aes-256-ofb","2.16.840.1.101.3.4.1.44":"aes-256-cfb"}');
|
|
55213
55151
|
}
|
|
55214
55152
|
});
|
|
55215
55153
|
var browserslistTargetHandler_namespaceObject = {};
|
|
@@ -56346,7 +56284,7 @@ function createFakeCompilationDependencies(getDeps, addDeps) {
|
|
|
56346
56284
|
};
|
|
56347
56285
|
}
|
|
56348
56286
|
const webpack_sources_lib = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.4_patch_hash=0d62122aa5f9ac77d9ad3b4959c3c0492778a5948c0b00b45a673f3facfca327/node_modules/webpack-sources/lib/index.js");
|
|
56349
|
-
var Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
56287
|
+
var Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
56350
56288
|
class SourceAdapter {
|
|
56351
56289
|
static fromBinding(source) {
|
|
56352
56290
|
if (!source.map) return new webpack_sources_lib.RawSource(source.source);
|
|
@@ -57621,10 +57559,16 @@ class DeterministicChunkIdsPlugin extends RspackBuiltinPlugin {
|
|
|
57621
57559
|
}
|
|
57622
57560
|
}
|
|
57623
57561
|
class DeterministicModuleIdsPlugin extends RspackBuiltinPlugin {
|
|
57562
|
+
options;
|
|
57624
57563
|
name = external_rspack_wasi_browser_js_BuiltinPluginName.DeterministicModuleIdsPlugin;
|
|
57625
57564
|
affectedHooks = 'compilation';
|
|
57565
|
+
constructor(options = {}){
|
|
57566
|
+
super(), this.options = options;
|
|
57567
|
+
}
|
|
57626
57568
|
raw() {
|
|
57627
|
-
return createBuiltinPlugin(this.name,
|
|
57569
|
+
return createBuiltinPlugin(this.name, {
|
|
57570
|
+
...this.options
|
|
57571
|
+
});
|
|
57628
57572
|
}
|
|
57629
57573
|
}
|
|
57630
57574
|
const DllEntryPlugin = base_create(external_rspack_wasi_browser_js_BuiltinPluginName.DllEntryPlugin, (context, entries, options)=>({
|
|
@@ -57904,7 +57848,7 @@ function applyLimits(options) {
|
|
|
57904
57848
|
base_create(external_rspack_wasi_browser_js_BuiltinPluginName.EsmNodeTargetPlugin, ()=>void 0);
|
|
57905
57849
|
const EvalDevToolModulePlugin = base_create(external_rspack_wasi_browser_js_BuiltinPluginName.EvalDevToolModulePlugin, (options)=>options, 'compilation');
|
|
57906
57850
|
const EvalSourceMapDevToolPlugin = base_create(external_rspack_wasi_browser_js_BuiltinPluginName.EvalSourceMapDevToolPlugin, (options)=>options, 'compilation');
|
|
57907
|
-
var util_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
57851
|
+
var util_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
57908
57852
|
function isNil(value) {
|
|
57909
57853
|
return null == value;
|
|
57910
57854
|
}
|
|
@@ -58602,7 +58546,7 @@ class Hash {
|
|
|
58602
58546
|
throw new AbstractMethodError();
|
|
58603
58547
|
}
|
|
58604
58548
|
}
|
|
58605
|
-
var wasm_hash_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
58549
|
+
var wasm_hash_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
58606
58550
|
const MAX_SHORT_STRING = -4 & Math.floor(16368);
|
|
58607
58551
|
class WasmHash {
|
|
58608
58552
|
exports;
|
|
@@ -58721,7 +58665,7 @@ const wasm_hash_create = (wasmModule, instancesPool, chunkSize, digestSize)=>{
|
|
|
58721
58665
|
return new WasmHash(new WebAssembly.Instance(wasmModule), instancesPool, chunkSize, digestSize);
|
|
58722
58666
|
};
|
|
58723
58667
|
const wasm_hash = wasm_hash_create;
|
|
58724
|
-
var md4_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
58668
|
+
var md4_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
58725
58669
|
let createMd4;
|
|
58726
58670
|
const hash_md4 = ()=>{
|
|
58727
58671
|
if (!createMd4) {
|
|
@@ -58730,7 +58674,7 @@ const hash_md4 = ()=>{
|
|
|
58730
58674
|
}
|
|
58731
58675
|
return createMd4();
|
|
58732
58676
|
};
|
|
58733
|
-
var xxhash64_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
58677
|
+
var xxhash64_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
58734
58678
|
let createXxhash64;
|
|
58735
58679
|
const hash_xxhash64 = ()=>{
|
|
58736
58680
|
if (!createXxhash64) {
|
|
@@ -58739,7 +58683,7 @@ const hash_xxhash64 = ()=>{
|
|
|
58739
58683
|
}
|
|
58740
58684
|
return createXxhash64();
|
|
58741
58685
|
};
|
|
58742
|
-
var createHash_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
58686
|
+
var createHash_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
58743
58687
|
const BULK_SIZE = 2000;
|
|
58744
58688
|
const digestCaches = {};
|
|
58745
58689
|
class BulkUpdateDecorator extends Hash {
|
|
@@ -58910,7 +58854,7 @@ function handleResult(loader, module, callback) {
|
|
|
58910
58854
|
if ('function' != typeof loader.normal && 'function' != typeof loader.pitch) return callback(new LoaderLoadingError(`Module '${loader.path}' is not a loader (must have normal or pitch function)`));
|
|
58911
58855
|
callback();
|
|
58912
58856
|
}
|
|
58913
|
-
var utils_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
58857
|
+
var utils_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
58914
58858
|
const decoder = new TextDecoder();
|
|
58915
58859
|
function utf8BufferToString(buf) {
|
|
58916
58860
|
const isShared = buf.buffer instanceof SharedArrayBuffer || buf.buffer.constructor?.name === 'SharedArrayBuffer';
|
|
@@ -60391,7 +60335,7 @@ class HotModuleReplacementPlugin extends RspackBuiltinPlugin {
|
|
|
60391
60335
|
const HttpExternalsRspackPlugin = base_create(external_rspack_wasi_browser_js_BuiltinPluginName.HttpExternalsRspackPlugin, (webAsync)=>({
|
|
60392
60336
|
webAsync
|
|
60393
60337
|
}));
|
|
60394
|
-
var HttpUriPlugin_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
60338
|
+
var HttpUriPlugin_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
60395
60339
|
memoize(()=>__webpack_require__("../../node_modules/.pnpm/stream-http@3.2.0/node_modules/stream-http/index.js"));
|
|
60396
60340
|
memoize(()=>__webpack_require__("../../node_modules/.pnpm/https-browserify@1.0.0/node_modules/https-browserify/index.js"));
|
|
60397
60341
|
const defaultHttpClientForBrowser = async (url, headers)=>{
|
|
@@ -61048,7 +60992,7 @@ const SizeLimitsPlugin = base_create(external_rspack_wasi_browser_js_BuiltinPlug
|
|
|
61048
60992
|
};
|
|
61049
60993
|
});
|
|
61050
60994
|
const SourceMapDevToolPlugin = base_create(external_rspack_wasi_browser_js_BuiltinPluginName.SourceMapDevToolPlugin, (options)=>options, 'compilation');
|
|
61051
|
-
var SubresourceIntegrityPlugin_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
60995
|
+
var SubresourceIntegrityPlugin_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
61052
60996
|
const SubresourceIntegrityPlugin_PLUGIN_NAME = 'SubresourceIntegrityPlugin';
|
|
61053
60997
|
const NATIVE_HTML_PLUGIN = 'HtmlRspackPlugin';
|
|
61054
60998
|
const HTTP_PROTOCOL_REGEX = /^https?:/;
|
|
@@ -61845,6 +61789,24 @@ const aliases = {
|
|
|
61845
61789
|
and_ff: 'firefox'
|
|
61846
61790
|
};
|
|
61847
61791
|
const renameBrowser = (name)=>aliases[name] || name;
|
|
61792
|
+
const resolveESVersion = (version, thresholds)=>{
|
|
61793
|
+
const index = thresholds.findIndex((threshold)=>version < threshold);
|
|
61794
|
+
const defaultVersion = 2024;
|
|
61795
|
+
if (-1 === index) return defaultVersion;
|
|
61796
|
+
const ES_VERSIONS = [
|
|
61797
|
+
2015,
|
|
61798
|
+
2016,
|
|
61799
|
+
2017,
|
|
61800
|
+
2018,
|
|
61801
|
+
2019,
|
|
61802
|
+
2020,
|
|
61803
|
+
2021,
|
|
61804
|
+
2022,
|
|
61805
|
+
2023,
|
|
61806
|
+
2024
|
|
61807
|
+
];
|
|
61808
|
+
return ES_VERSIONS[index - 1] ?? 5;
|
|
61809
|
+
};
|
|
61848
61810
|
function browsersToESVersion(browsers) {
|
|
61849
61811
|
let esVersion = 2024;
|
|
61850
61812
|
for (const item of browsers){
|
|
@@ -61858,18 +61820,9 @@ function browsersToESVersion(browsers) {
|
|
|
61858
61820
|
break;
|
|
61859
61821
|
}
|
|
61860
61822
|
const versions = ES_VERSIONS_MAP[browser];
|
|
61861
|
-
if (versions)
|
|
61862
|
-
|
|
61863
|
-
|
|
61864
|
-
else if (version < versions[2]) esVersion = Math.min(2016, esVersion);
|
|
61865
|
-
else if (version < versions[3]) esVersion = Math.min(2017, esVersion);
|
|
61866
|
-
else if (version < versions[4]) esVersion = Math.min(2018, esVersion);
|
|
61867
|
-
else if (version < versions[5]) esVersion = Math.min(2019, esVersion);
|
|
61868
|
-
else if (version < versions[6]) esVersion = Math.min(2020, esVersion);
|
|
61869
|
-
else if (version < versions[7]) esVersion = Math.min(2021, esVersion);
|
|
61870
|
-
else if (version < versions[8]) esVersion = Math.min(2022, esVersion);
|
|
61871
|
-
else if (version < versions[9]) esVersion = Math.min(2023, esVersion);
|
|
61872
|
-
}
|
|
61823
|
+
if (!versions) continue;
|
|
61824
|
+
const targetVersion = resolveESVersion(version, versions);
|
|
61825
|
+
esVersion = Math.min(targetVersion, esVersion);
|
|
61873
61826
|
}
|
|
61874
61827
|
return esVersion;
|
|
61875
61828
|
}
|
|
@@ -63198,7 +63151,7 @@ const applyOutputDefaults = (options, { context, targetProperties: tp, isAffecte
|
|
|
63198
63151
|
});
|
|
63199
63152
|
D(output, 'bundlerInfo', {});
|
|
63200
63153
|
if ('object' == typeof output.bundlerInfo) {
|
|
63201
|
-
D(output.bundlerInfo, 'version', "2.0.
|
|
63154
|
+
D(output.bundlerInfo, 'version', "2.0.6");
|
|
63202
63155
|
D(output.bundlerInfo, 'bundler', 'rspack');
|
|
63203
63156
|
D(output.bundlerInfo, 'force', false);
|
|
63204
63157
|
}
|
|
@@ -64169,7 +64122,7 @@ const mkdirp = (fs, p, callback)=>{
|
|
|
64169
64122
|
callback();
|
|
64170
64123
|
});
|
|
64171
64124
|
};
|
|
64172
|
-
var FileSystem_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
64125
|
+
var FileSystem_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
64173
64126
|
const BUFFER_SIZE = 1000;
|
|
64174
64127
|
const ASYNC_NOOP = async ()=>{};
|
|
64175
64128
|
const NOOP_FILESYSTEM = {
|
|
@@ -64856,7 +64809,7 @@ class MultiStats {
|
|
|
64856
64809
|
return obj;
|
|
64857
64810
|
});
|
|
64858
64811
|
if (childOptions.version) {
|
|
64859
|
-
obj.rspackVersion = "2.0.
|
|
64812
|
+
obj.rspackVersion = "2.0.6";
|
|
64860
64813
|
obj.version = "5.75.0";
|
|
64861
64814
|
}
|
|
64862
64815
|
if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join('');
|
|
@@ -66562,7 +66515,7 @@ const SIMPLE_EXTRACTORS = {
|
|
|
66562
66515
|
},
|
|
66563
66516
|
version: (object)=>{
|
|
66564
66517
|
object.version = "5.75.0";
|
|
66565
|
-
object.rspackVersion = "2.0.
|
|
66518
|
+
object.rspackVersion = "2.0.6";
|
|
66566
66519
|
},
|
|
66567
66520
|
env: (object, _compilation, _context, { _env })=>{
|
|
66568
66521
|
object.env = _env;
|
|
@@ -68231,8 +68184,11 @@ class RspackOptionsApply {
|
|
|
68231
68184
|
}
|
|
68232
68185
|
}
|
|
68233
68186
|
function getModernModuleCjsExternalType(options) {
|
|
68234
|
-
const
|
|
68235
|
-
|
|
68187
|
+
const { context, target } = options;
|
|
68188
|
+
assertNotNill(context);
|
|
68189
|
+
if (null == target || false === target) return 'commonjs';
|
|
68190
|
+
const targetProperties = 'string' == typeof target ? getTargetProperties(target, context) : getTargetsProperties(target, context);
|
|
68191
|
+
return targetProperties.nodeBuiltins ? 'node-commonjs' : 'commonjs';
|
|
68236
68192
|
}
|
|
68237
68193
|
const validateConfig_ERROR_PREFIX = 'Invalid Rspack configuration:';
|
|
68238
68194
|
const validateContext = ({ context })=>{
|
|
@@ -68456,7 +68412,7 @@ const createHtmlPluginHooksRegisters = (getCompiler, createTap)=>{
|
|
|
68456
68412
|
})
|
|
68457
68413
|
};
|
|
68458
68414
|
};
|
|
68459
|
-
var compilation_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
68415
|
+
var compilation_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
68460
68416
|
class CodeGenerationResult {
|
|
68461
68417
|
#inner;
|
|
68462
68418
|
constructor(result){
|
|
@@ -68924,7 +68880,7 @@ const createContextModuleFactoryHooksRegisters = (getCompiler, createTap)=>({
|
|
|
68924
68880
|
};
|
|
68925
68881
|
})
|
|
68926
68882
|
});
|
|
68927
|
-
var javascriptModules_Buffer = __webpack_require__("./src/browser/buffer.ts")
|
|
68883
|
+
var javascriptModules_Buffer = __webpack_require__("./src/browser/buffer.ts").h;
|
|
68928
68884
|
const createJavaScriptModulesHooksRegisters = (getCompiler, createTap)=>({
|
|
68929
68885
|
registerJavascriptModulesChunkHashTaps: createTap(rspack_wasi_browser.RegisterJsTapKind.JavascriptModulesChunkHash, function() {
|
|
68930
68886
|
return JavascriptModulesPlugin.getCompilationHooks(getCompiler().__internal__get_compilation()).chunkHash;
|
|
@@ -69357,6 +69313,7 @@ class Compiler {
|
|
|
69357
69313
|
#platform;
|
|
69358
69314
|
#target;
|
|
69359
69315
|
options;
|
|
69316
|
+
#rawOptions;
|
|
69360
69317
|
unsafeFastDrop = false;
|
|
69361
69318
|
__internal_browser_require;
|
|
69362
69319
|
constructor(context, options){
|
|
@@ -69739,7 +69696,6 @@ class Compiler {
|
|
|
69739
69696
|
});
|
|
69740
69697
|
}
|
|
69741
69698
|
close(callback) {
|
|
69742
|
-
if (this.#compilation) this.#bindingCompilationMap.delete(this.#compilation.__internal_getInner());
|
|
69743
69699
|
if (this.watching) return void this.watching.close(()=>{
|
|
69744
69700
|
this.close(callback);
|
|
69745
69701
|
});
|
|
@@ -69771,8 +69727,7 @@ class Compiler {
|
|
|
69771
69727
|
}
|
|
69772
69728
|
__internal__create_compilation(native) {
|
|
69773
69729
|
let compilation = this.#bindingCompilationMap.get(native);
|
|
69774
|
-
if (compilation)
|
|
69775
|
-
else {
|
|
69730
|
+
if (!compilation) {
|
|
69776
69731
|
compilation = new Compilation(this, native);
|
|
69777
69732
|
compilation.name = this.name;
|
|
69778
69733
|
this.#bindingCompilationMap.set(native, compilation);
|
|
@@ -69806,14 +69761,14 @@ class Compiler {
|
|
|
69806
69761
|
if (error) return callback(error);
|
|
69807
69762
|
if (this.#instance) return callback(null, this.#instance);
|
|
69808
69763
|
const { options } = this;
|
|
69809
|
-
|
|
69810
|
-
rawOptions.__references = Object.fromEntries(this.#ruleSet.builtinReferences.entries());
|
|
69811
|
-
rawOptions.__virtual_files = VirtualModulesPlugin.__internal__take_virtual_files(this);
|
|
69812
|
-
const instanceBinding = __webpack_require__("@rspack/binding?
|
|
69764
|
+
this.#rawOptions = getRawOptions(options, this);
|
|
69765
|
+
this.#rawOptions.__references = Object.fromEntries(this.#ruleSet.builtinReferences.entries());
|
|
69766
|
+
this.#rawOptions.__virtual_files = VirtualModulesPlugin.__internal__take_virtual_files(this);
|
|
69767
|
+
const instanceBinding = __webpack_require__("@rspack/binding?1a47");
|
|
69813
69768
|
this.#registers = this.#createHooksRegisters();
|
|
69814
69769
|
const inputFileSystem = this.inputFileSystem && ThreadsafeInputNodeFS.needsBinding(options.experiments.useInputFileSystem) ? ThreadsafeInputNodeFS.__to_binding(this.inputFileSystem) : void 0;
|
|
69815
69770
|
try {
|
|
69816
|
-
this.#instance = new instanceBinding.JsCompiler(this.compilerPath, rawOptions, this.#builtinPlugins, this.#registers, ThreadsafeOutputNodeFS.__to_binding(this.outputFileSystem), this.intermediateFileSystem ? ThreadsafeIntermediateNodeFS.__to_binding(this.intermediateFileSystem) : void 0, inputFileSystem, ResolverFactory.__to_binding(this.resolverFactory), this.unsafeFastDrop, this.#platform);
|
|
69771
|
+
this.#instance = new instanceBinding.JsCompiler(this.compilerPath, this.#rawOptions, this.#builtinPlugins, this.#registers, ThreadsafeOutputNodeFS.__to_binding(this.outputFileSystem), this.intermediateFileSystem ? ThreadsafeIntermediateNodeFS.__to_binding(this.intermediateFileSystem) : void 0, inputFileSystem, ResolverFactory.__to_binding(this.resolverFactory), this.unsafeFastDrop, this.#platform);
|
|
69817
69772
|
callback(null, this.#instance);
|
|
69818
69773
|
} catch (err) {
|
|
69819
69774
|
if (err instanceof Error) delete err.stack;
|
|
@@ -71399,7 +71354,7 @@ function transformSync(source, options) {
|
|
|
71399
71354
|
const _options = JSON.stringify(options || {});
|
|
71400
71355
|
return rspack_wasi_browser.transformSync(source, _options);
|
|
71401
71356
|
}
|
|
71402
|
-
const exports_rspackVersion = "2.0.
|
|
71357
|
+
const exports_rspackVersion = "2.0.6";
|
|
71403
71358
|
const exports_version = "5.75.0";
|
|
71404
71359
|
const exports_WebpackError = Error;
|
|
71405
71360
|
const exports_config = {
|
|
@@ -71425,6 +71380,7 @@ const electron = {
|
|
|
71425
71380
|
ElectronTargetPlugin: ElectronTargetPlugin
|
|
71426
71381
|
};
|
|
71427
71382
|
const ids = {
|
|
71383
|
+
DeterministicModuleIdsPlugin: DeterministicModuleIdsPlugin,
|
|
71428
71384
|
HashedModuleIdsPlugin: HashedModuleIdsPlugin
|
|
71429
71385
|
};
|
|
71430
71386
|
const exports_library = {
|
package/dist/napi-binding.d.ts
CHANGED
|
@@ -334,7 +334,7 @@ export declare class JsCompilation {
|
|
|
334
334
|
}
|
|
335
335
|
|
|
336
336
|
export declare class JsCompiler {
|
|
337
|
-
constructor(compilerPath: string, options: RawOptions, builtinPlugins:
|
|
337
|
+
constructor(compilerPath: string, options: RawOptions, builtinPlugins: BuiltinPlugin[], registerJsTaps: RegisterJsTaps, outputFilesystem: ThreadsafeNodeFS, intermediateFilesystem: ThreadsafeNodeFS | undefined | null, inputFilesystem: ThreadsafeNodeFS | undefined | null, resolverFactoryReference: JsResolverFactory, unsafeFastDrop: boolean, platform: RawCompilerPlatform)
|
|
338
338
|
setNonSkippableRegisters(kinds: Array<RegisterJsTapKind>): void
|
|
339
339
|
/** Build with the given option passed to the constructor */
|
|
340
340
|
build(callback: (err: null | Error) => void): void
|
|
@@ -2156,6 +2156,15 @@ export interface RawCssParserOptions {
|
|
|
2156
2156
|
dashedIdents?: boolean
|
|
2157
2157
|
}
|
|
2158
2158
|
|
|
2159
|
+
export interface RawDeterministicModuleIdsPluginOptions {
|
|
2160
|
+
context?: string
|
|
2161
|
+
test?: (module: Module) => boolean
|
|
2162
|
+
maxLength?: number
|
|
2163
|
+
salt?: number
|
|
2164
|
+
fixedLength?: boolean
|
|
2165
|
+
failOnConflict?: boolean
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2159
2168
|
export interface RawDllEntryPluginOptions {
|
|
2160
2169
|
context: string
|
|
2161
2170
|
entries: Array<string>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack-debug/browser",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"webpackVersion": "5.75.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Rspack for running in the browser. This is still in early stage and may not follow the semver.",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"@emnapi/core": "1.10.0",
|
|
33
33
|
"@emnapi/runtime": "1.10.0",
|
|
34
34
|
"@napi-rs/wasm-runtime": "1.1.4",
|
|
35
|
-
"@rspack/lite-tapable": "1.1.
|
|
35
|
+
"@rspack/lite-tapable": "1.1.1",
|
|
36
36
|
"@swc/types": "0.1.26",
|
|
37
|
-
"memfs": "4.57.
|
|
37
|
+
"memfs": "4.57.3",
|
|
38
38
|
"webpack-sources": "3.3.4"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|