@lynx-js/rspeedy-canary 0.9.8-canary-20250528-fd608ba3 → 0.9.8-canary-20250531-f65eeebe
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/CHANGELOG.md +4 -2
- package/dist/index.js +3 -1
- package/dist/src_cli_build_ts.js +5 -3
- package/dist/src_cli_dev_ts.js +5 -3
- package/dist/src_cli_inspect_ts.js +5 -3
- package/dist/src_cli_preview_ts.js +5 -3
- package/dist/src_config_validate_ts.js +133 -133
- package/dist/src_plugins_chunkLoading_plugin_ts.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
# @lynx-js/rspeedy
|
|
2
2
|
|
|
3
|
-
## 0.9.8-canary-
|
|
3
|
+
## 0.9.8-canary-20250531035833-f65eeebe9336e100929da70ad087a62e9db2b4e4
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- Fix the "SyntaxError: invalid redefinition of parameter name" error. ([#949](https://github.com/lynx-family/lynx-stack/pull/949))
|
|
8
|
+
|
|
9
|
+
Remove the default `output.iife: false` from Rspack.
|
|
8
10
|
|
|
9
11
|
## 0.9.7
|
|
10
12
|
|
package/dist/index.js
CHANGED
|
@@ -349,8 +349,10 @@ function toRsbuildConfig(config) {
|
|
|
349
349
|
polyfill: 'off',
|
|
350
350
|
sourceMap: config.output?.sourceMap
|
|
351
351
|
},
|
|
352
|
+
resolve: {
|
|
353
|
+
alias: config.source?.alias
|
|
354
|
+
},
|
|
352
355
|
source: {
|
|
353
|
-
alias: config.source?.alias,
|
|
354
356
|
assetsInclude: config.source?.assetsInclude,
|
|
355
357
|
decorators: config.source?.decorators,
|
|
356
358
|
define: config.source?.define,
|
package/dist/src_cli_build_ts.js
CHANGED
|
@@ -15,7 +15,7 @@ export const __webpack_modules__ = {
|
|
|
15
15
|
async function build(cwd, buildOptions) {
|
|
16
16
|
const shouldExit = 'true' !== process.env['RSDOCTOR'] || (0, _utils_is_ci_js__WEBPACK_IMPORTED_MODULE_4__.y)();
|
|
17
17
|
try {
|
|
18
|
-
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_3__.
|
|
18
|
+
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_3__.init)(cwd, buildOptions);
|
|
19
19
|
const rspeedy = await (0, _create_rspeedy_js__WEBPACK_IMPORTED_MODULE_2__.S)(createRspeedyOptions);
|
|
20
20
|
await rspeedy.build();
|
|
21
21
|
} catch (error) {
|
|
@@ -27,7 +27,7 @@ export const __webpack_modules__ = {
|
|
|
27
27
|
},
|
|
28
28
|
"./src/cli/init.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
29
29
|
__webpack_require__.d(__webpack_exports__, {
|
|
30
|
-
|
|
30
|
+
init: ()=>init
|
|
31
31
|
});
|
|
32
32
|
var external_node_fs_ = __webpack_require__("node:fs");
|
|
33
33
|
var external_node_path_ = __webpack_require__("node:path");
|
|
@@ -236,8 +236,10 @@ export const __webpack_modules__ = {
|
|
|
236
236
|
polyfill: 'off',
|
|
237
237
|
sourceMap: config.output?.sourceMap
|
|
238
238
|
},
|
|
239
|
+
resolve: {
|
|
240
|
+
alias: config.source?.alias
|
|
241
|
+
},
|
|
239
242
|
source: {
|
|
240
|
-
alias: config.source?.alias,
|
|
241
243
|
assetsInclude: config.source?.assetsInclude,
|
|
242
244
|
decorators: config.source?.decorators,
|
|
243
245
|
define: config.source?.define,
|
package/dist/src_cli_dev_ts.js
CHANGED
|
@@ -17,7 +17,7 @@ export const __webpack_modules__ = {
|
|
|
17
17
|
async function dev(cwd, devOptions) {
|
|
18
18
|
let onBeforeRestart = [];
|
|
19
19
|
try {
|
|
20
|
-
const { rspeedyConfig, configPath, createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_4__.
|
|
20
|
+
const { rspeedyConfig, configPath, createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_4__.init)(cwd, devOptions);
|
|
21
21
|
const watchedFiles = [
|
|
22
22
|
configPath
|
|
23
23
|
];
|
|
@@ -70,7 +70,7 @@ export const __webpack_modules__ = {
|
|
|
70
70
|
},
|
|
71
71
|
"./src/cli/init.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
72
72
|
__webpack_require__.d(__webpack_exports__, {
|
|
73
|
-
|
|
73
|
+
init: ()=>init
|
|
74
74
|
});
|
|
75
75
|
var external_node_fs_ = __webpack_require__("node:fs");
|
|
76
76
|
var external_node_path_ = __webpack_require__("node:path");
|
|
@@ -279,8 +279,10 @@ export const __webpack_modules__ = {
|
|
|
279
279
|
polyfill: 'off',
|
|
280
280
|
sourceMap: config.output?.sourceMap
|
|
281
281
|
},
|
|
282
|
+
resolve: {
|
|
283
|
+
alias: config.source?.alias
|
|
284
|
+
},
|
|
282
285
|
source: {
|
|
283
|
-
alias: config.source?.alias,
|
|
284
286
|
assetsInclude: config.source?.assetsInclude,
|
|
285
287
|
decorators: config.source?.decorators,
|
|
286
288
|
define: config.source?.define,
|
|
@@ -4,7 +4,7 @@ export const __webpack_ids__ = [
|
|
|
4
4
|
export const __webpack_modules__ = {
|
|
5
5
|
"./src/cli/init.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6
6
|
__webpack_require__.d(__webpack_exports__, {
|
|
7
|
-
|
|
7
|
+
init: ()=>init
|
|
8
8
|
});
|
|
9
9
|
var external_node_fs_ = __webpack_require__("node:fs");
|
|
10
10
|
var external_node_path_ = __webpack_require__("node:path");
|
|
@@ -122,7 +122,7 @@ export const __webpack_modules__ = {
|
|
|
122
122
|
var _init_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("./src/cli/init.ts");
|
|
123
123
|
async function inspect(cwd, inspectOptions) {
|
|
124
124
|
try {
|
|
125
|
-
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_3__.
|
|
125
|
+
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_3__.init)(cwd, inspectOptions);
|
|
126
126
|
const rspeedy = await (0, _create_rspeedy_js__WEBPACK_IMPORTED_MODULE_2__.S)(createRspeedyOptions);
|
|
127
127
|
await rspeedy.inspectConfig({
|
|
128
128
|
mode: inspectOptions.mode ?? process.env['NODE_ENV'] ?? 'development',
|
|
@@ -239,8 +239,10 @@ export const __webpack_modules__ = {
|
|
|
239
239
|
polyfill: 'off',
|
|
240
240
|
sourceMap: config.output?.sourceMap
|
|
241
241
|
},
|
|
242
|
+
resolve: {
|
|
243
|
+
alias: config.source?.alias
|
|
244
|
+
},
|
|
242
245
|
source: {
|
|
243
|
-
alias: config.source?.alias,
|
|
244
246
|
assetsInclude: config.source?.assetsInclude,
|
|
245
247
|
decorators: config.source?.decorators,
|
|
246
248
|
define: config.source?.define,
|
|
@@ -4,7 +4,7 @@ export const __webpack_ids__ = [
|
|
|
4
4
|
export const __webpack_modules__ = {
|
|
5
5
|
"./src/cli/init.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6
6
|
__webpack_require__.d(__webpack_exports__, {
|
|
7
|
-
|
|
7
|
+
init: ()=>init
|
|
8
8
|
});
|
|
9
9
|
var external_node_fs_ = __webpack_require__("node:fs");
|
|
10
10
|
var external_node_path_ = __webpack_require__("node:path");
|
|
@@ -125,7 +125,7 @@ export const __webpack_modules__ = {
|
|
|
125
125
|
var _init_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("./src/cli/init.ts");
|
|
126
126
|
async function preview(cwd, previewOptions) {
|
|
127
127
|
try {
|
|
128
|
-
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_4__.
|
|
128
|
+
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_4__.init)(cwd, previewOptions);
|
|
129
129
|
const rspeedy = await (0, _create_rspeedy_js__WEBPACK_IMPORTED_MODULE_3__.S)(createRspeedyOptions);
|
|
130
130
|
await rspeedy.initConfigs();
|
|
131
131
|
const { distPath } = rspeedy.context;
|
|
@@ -241,8 +241,10 @@ export const __webpack_modules__ = {
|
|
|
241
241
|
polyfill: 'off',
|
|
242
242
|
sourceMap: config.output?.sourceMap
|
|
243
243
|
},
|
|
244
|
+
resolve: {
|
|
245
|
+
alias: config.source?.alias
|
|
246
|
+
},
|
|
244
247
|
source: {
|
|
245
|
-
alias: config.source?.alias,
|
|
246
248
|
assetsInclude: config.source?.assetsInclude,
|
|
247
249
|
decorators: config.source?.decorators,
|
|
248
250
|
define: config.source?.define,
|
|
@@ -1414,9 +1414,9 @@ export const __webpack_modules__ = {
|
|
|
1414
1414
|
if (void 0 === value) return true;
|
|
1415
1415
|
return "string" == typeof value || "boolean" == typeof value;
|
|
1416
1416
|
});
|
|
1417
|
-
const _io50 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@
|
|
1417
|
+
const _io50 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@6636"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
1418
1418
|
if ([
|
|
1419
|
-
"__@toStringTag@
|
|
1419
|
+
"__@toStringTag@6636"
|
|
1420
1420
|
].some((prop)=>key === prop)) return true;
|
|
1421
1421
|
const value = input[key];
|
|
1422
1422
|
if (void 0 === value) return true;
|
|
@@ -2977,14 +2977,14 @@ export const __webpack_modules__ = {
|
|
|
2977
2977
|
if (void 0 === value) return true;
|
|
2978
2978
|
return false;
|
|
2979
2979
|
})));
|
|
2980
|
-
const _io155 = (input, _exceptionable = true)=>"number" == typeof input.BYTES_PER_ELEMENT && (input.buffer instanceof ArrayBuffer || input.buffer instanceof SharedArrayBuffer) && "number" == typeof input.byteLength && "number" == typeof input.byteOffset && "number" == typeof input.length && "Uint8Array" === input["__@toStringTag@
|
|
2980
|
+
const _io155 = (input, _exceptionable = true)=>"number" == typeof input.BYTES_PER_ELEMENT && (input.buffer instanceof ArrayBuffer || input.buffer instanceof SharedArrayBuffer) && "number" == typeof input.byteLength && "number" == typeof input.byteOffset && "number" == typeof input.length && "Uint8Array" === input["__@toStringTag@6636"] && Object.keys(input).every((key)=>{
|
|
2981
2981
|
if ([
|
|
2982
2982
|
"BYTES_PER_ELEMENT",
|
|
2983
2983
|
"buffer",
|
|
2984
2984
|
"byteLength",
|
|
2985
2985
|
"byteOffset",
|
|
2986
2986
|
"length",
|
|
2987
|
-
"__@toStringTag@
|
|
2987
|
+
"__@toStringTag@6636"
|
|
2988
2988
|
].some((prop)=>key === prop)) return true;
|
|
2989
2989
|
const value = input[key];
|
|
2990
2990
|
if (void 0 === value) return true;
|
|
@@ -5603,7 +5603,7 @@ export const __webpack_modules__ = {
|
|
|
5603
5603
|
if (void 0 === value) return true;
|
|
5604
5604
|
return false;
|
|
5605
5605
|
}));
|
|
5606
|
-
const _io364 = (input, _exceptionable = true)=>(void 0 === input.js || "
|
|
5606
|
+
const _io364 = (input, _exceptionable = true)=>(void 0 === input.js || "boolean" == typeof input.js) && (void 0 === input.jsOptions || "object" == typeof input.jsOptions && null !== input.jsOptions && false === Array.isArray(input.jsOptions) && _io365(input.jsOptions, _exceptionable)) && (void 0 === input.css || "boolean" == typeof input.css) && (void 0 === input.cssOptions || "object" == typeof input.cssOptions && null !== input.cssOptions && false === Array.isArray(input.cssOptions) && _io372(input.cssOptions, _exceptionable)) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
5607
5607
|
if ([
|
|
5608
5608
|
"js",
|
|
5609
5609
|
"jsOptions",
|
|
@@ -5834,17 +5834,17 @@ export const __webpack_modules__ = {
|
|
|
5834
5834
|
if (void 0 === value) return true;
|
|
5835
5835
|
return false;
|
|
5836
5836
|
}));
|
|
5837
|
-
const _io378 = (input, _exceptionable = true)=>"string" == typeof input.from && (void 0 === input.
|
|
5837
|
+
const _io378 = (input, _exceptionable = true)=>"string" == typeof input.from && null !== input.to && (void 0 === input.to || "function" == typeof input.to || "string" == typeof input.to) && (void 0 === input.context || "string" == typeof input.context) && (void 0 === input.toType || "string" == typeof input.toType) && (void 0 === input.noErrorOnMissing || "boolean" == typeof input.noErrorOnMissing) && (void 0 === input.force || "boolean" == typeof input.force) && (void 0 === input.priority || "number" == typeof input.priority) && (void 0 === input.globOptions || "object" == typeof input.globOptions && null !== input.globOptions && false === Array.isArray(input.globOptions) && _io379(input.globOptions, _exceptionable)) && (void 0 === input.info || "object" == typeof input.info && null !== input.info && false === Array.isArray(input.info) && _io380(input.info, _exceptionable)) && (void 0 === input.copyPermissions || "boolean" == typeof input.copyPermissions) && null !== input.transform && (void 0 === input.transform || "function" == typeof input.transform || "object" == typeof input.transform && null !== input.transform && _io382(input.transform, _exceptionable)) && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
5838
5838
|
if ([
|
|
5839
5839
|
"from",
|
|
5840
|
-
"info",
|
|
5841
|
-
"context",
|
|
5842
5840
|
"to",
|
|
5841
|
+
"context",
|
|
5843
5842
|
"toType",
|
|
5844
5843
|
"noErrorOnMissing",
|
|
5845
5844
|
"force",
|
|
5846
5845
|
"priority",
|
|
5847
5846
|
"globOptions",
|
|
5847
|
+
"info",
|
|
5848
5848
|
"copyPermissions",
|
|
5849
5849
|
"transform"
|
|
5850
5850
|
].some((prop)=>key === prop)) return true;
|
|
@@ -5852,7 +5852,17 @@ export const __webpack_modules__ = {
|
|
|
5852
5852
|
if (void 0 === value) return true;
|
|
5853
5853
|
return false;
|
|
5854
5854
|
}));
|
|
5855
|
-
const _io379 = (input, _exceptionable = true)=>(void 0 === input.
|
|
5855
|
+
const _io379 = (input, _exceptionable = true)=>(void 0 === input.caseSensitiveMatch || "boolean" == typeof input.caseSensitiveMatch) && (void 0 === input.dot || "boolean" == typeof input.dot) && (void 0 === input.ignore || Array.isArray(input.ignore) && input.ignore.every((elem, _index300)=>"string" == typeof elem)) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
5856
|
+
if ([
|
|
5857
|
+
"caseSensitiveMatch",
|
|
5858
|
+
"dot",
|
|
5859
|
+
"ignore"
|
|
5860
|
+
].some((prop)=>key === prop)) return true;
|
|
5861
|
+
const value = input[key];
|
|
5862
|
+
if (void 0 === value) return true;
|
|
5863
|
+
return false;
|
|
5864
|
+
}));
|
|
5865
|
+
const _io380 = (input, _exceptionable = true)=>(void 0 === input.immutable || "boolean" == typeof input.immutable) && (void 0 === input.minimized || "boolean" == typeof input.minimized) && (void 0 === input.chunkHash || Array.isArray(input.chunkHash) && input.chunkHash.every((elem, _index301)=>"string" == typeof elem)) && (void 0 === input.contentHash || Array.isArray(input.contentHash) && input.contentHash.every((elem, _index302)=>"string" == typeof elem)) && (void 0 === input.development || "boolean" == typeof input.development) && (void 0 === input.hotModuleReplacement || "boolean" == typeof input.hotModuleReplacement) && (void 0 === input.related || "object" == typeof input.related && null !== input.related && false === Array.isArray(input.related) && _io381(input.related, _exceptionable)) && (void 0 === input.version || "string" == typeof input.version) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
5856
5866
|
if ([
|
|
5857
5867
|
"immutable",
|
|
5858
5868
|
"minimized",
|
|
@@ -5867,7 +5877,7 @@ export const __webpack_modules__ = {
|
|
|
5867
5877
|
if (void 0 === value) return true;
|
|
5868
5878
|
return false;
|
|
5869
5879
|
}));
|
|
5870
|
-
const
|
|
5880
|
+
const _io381 = (input, _exceptionable = true)=>(void 0 === input.sourceMap || "string" == typeof input.sourceMap) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
5871
5881
|
if ([
|
|
5872
5882
|
"sourceMap"
|
|
5873
5883
|
].some((prop)=>key === prop)) return true;
|
|
@@ -5875,16 +5885,6 @@ export const __webpack_modules__ = {
|
|
|
5875
5885
|
if (void 0 === value) return true;
|
|
5876
5886
|
return false;
|
|
5877
5887
|
}));
|
|
5878
|
-
const _io381 = (input, _exceptionable = true)=>(void 0 === input.caseSensitiveMatch || "boolean" == typeof input.caseSensitiveMatch) && (void 0 === input.dot || "boolean" == typeof input.dot) && (void 0 === input.ignore || Array.isArray(input.ignore) && input.ignore.every((elem, _index302)=>"string" == typeof elem)) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
5879
|
-
if ([
|
|
5880
|
-
"caseSensitiveMatch",
|
|
5881
|
-
"dot",
|
|
5882
|
-
"ignore"
|
|
5883
|
-
].some((prop)=>key === prop)) return true;
|
|
5884
|
-
const value = input[key];
|
|
5885
|
-
if (void 0 === value) return true;
|
|
5886
|
-
return false;
|
|
5887
|
-
}));
|
|
5888
5888
|
const _io382 = (input, _exceptionable = true)=>1 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
5889
5889
|
if ([
|
|
5890
5890
|
"transformer"
|
|
@@ -6127,9 +6127,9 @@ export const __webpack_modules__ = {
|
|
|
6127
6127
|
if (void 0 === value) return true;
|
|
6128
6128
|
return false;
|
|
6129
6129
|
}));
|
|
6130
|
-
const _io405 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@
|
|
6130
|
+
const _io405 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@6636"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
6131
6131
|
if ([
|
|
6132
|
-
"__@toStringTag@
|
|
6132
|
+
"__@toStringTag@6636"
|
|
6133
6133
|
].some((prop)=>key === prop)) return true;
|
|
6134
6134
|
const value = input[key];
|
|
6135
6135
|
if (void 0 === value) return true;
|
|
@@ -6721,18 +6721,18 @@ export const __webpack_modules__ = {
|
|
|
6721
6721
|
return false;
|
|
6722
6722
|
})();
|
|
6723
6723
|
const _iu3 = (input, _exceptionable = true)=>(()=>{
|
|
6724
|
-
if (void 0 !== input["__@toStringTag@
|
|
6724
|
+
if (void 0 !== input["__@toStringTag@6636"]) return _io155(input, _exceptionable);
|
|
6725
6725
|
if (void 0 !== input.pem) return _io156(input, _exceptionable);
|
|
6726
6726
|
return false;
|
|
6727
6727
|
})();
|
|
6728
6728
|
const _iu4 = (input, _exceptionable = true)=>(()=>{
|
|
6729
|
-
if (void 0 !== input["__@toStringTag@
|
|
6729
|
+
if (void 0 !== input["__@toStringTag@6636"]) return _io155(input, _exceptionable);
|
|
6730
6730
|
if (void 0 !== input.buf) return _io157(input, _exceptionable);
|
|
6731
6731
|
return false;
|
|
6732
6732
|
})();
|
|
6733
6733
|
const _iu5 = (input, _exceptionable = true)=>(()=>{
|
|
6734
6734
|
if (void 0 !== input.name) return _io404(input, _exceptionable);
|
|
6735
|
-
if (void 0 !== input["__@toStringTag@
|
|
6735
|
+
if (void 0 !== input["__@toStringTag@6636"]) return _io405(input, _exceptionable);
|
|
6736
6736
|
return false;
|
|
6737
6737
|
})();
|
|
6738
6738
|
const _iu6 = (input, _exceptionable = true)=>(()=>{
|
|
@@ -9476,14 +9476,14 @@ export const __webpack_modules__ = {
|
|
|
9476
9476
|
}).every((flag)=>flag)
|
|
9477
9477
|
].every((flag)=>flag);
|
|
9478
9478
|
const _vo50 = (input, _path, _exceptionable = true)=>[
|
|
9479
|
-
"string" == typeof input["__@toStringTag@
|
|
9480
|
-
path: _path + "[\"__@toStringTag@
|
|
9479
|
+
"string" == typeof input["__@toStringTag@6636"] || _report(_exceptionable, {
|
|
9480
|
+
path: _path + "[\"__@toStringTag@6636\"]",
|
|
9481
9481
|
expected: "string",
|
|
9482
|
-
value: input["__@toStringTag@
|
|
9482
|
+
value: input["__@toStringTag@6636"]
|
|
9483
9483
|
}),
|
|
9484
9484
|
1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
|
|
9485
9485
|
if ([
|
|
9486
|
-
"__@toStringTag@
|
|
9486
|
+
"__@toStringTag@6636"
|
|
9487
9487
|
].some((prop)=>key === prop)) return true;
|
|
9488
9488
|
const value = input[key];
|
|
9489
9489
|
if (void 0 === value) return true;
|
|
@@ -17842,10 +17842,10 @@ export const __webpack_modules__ = {
|
|
|
17842
17842
|
expected: "number",
|
|
17843
17843
|
value: input.length
|
|
17844
17844
|
}),
|
|
17845
|
-
"Uint8Array" === input["__@toStringTag@
|
|
17846
|
-
path: _path + "[\"__@toStringTag@
|
|
17845
|
+
"Uint8Array" === input["__@toStringTag@6636"] || _report(_exceptionable, {
|
|
17846
|
+
path: _path + "[\"__@toStringTag@6636\"]",
|
|
17847
17847
|
expected: "\"Uint8Array\"",
|
|
17848
|
-
value: input["__@toStringTag@
|
|
17848
|
+
value: input["__@toStringTag@6636"]
|
|
17849
17849
|
}),
|
|
17850
17850
|
false === _exceptionable || Object.keys(input).map((key)=>{
|
|
17851
17851
|
if ([
|
|
@@ -17854,7 +17854,7 @@ export const __webpack_modules__ = {
|
|
|
17854
17854
|
"byteLength",
|
|
17855
17855
|
"byteOffset",
|
|
17856
17856
|
"length",
|
|
17857
|
-
"__@toStringTag@
|
|
17857
|
+
"__@toStringTag@6636"
|
|
17858
17858
|
].some((prop)=>key === prop)) return true;
|
|
17859
17859
|
const value = input[key];
|
|
17860
17860
|
if (void 0 === value) return true;
|
|
@@ -31383,31 +31383,31 @@ export const __webpack_modules__ = {
|
|
|
31383
31383
|
}),
|
|
31384
31384
|
(null !== input.copy || _report(_exceptionable, {
|
|
31385
31385
|
path: _path + ".copy",
|
|
31386
|
-
expected: "(Array<string | (
|
|
31386
|
+
expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
|
|
31387
31387
|
value: input.copy
|
|
31388
31388
|
})) && (void 0 === input.copy || Array.isArray(input.copy) && input.copy.map((elem, _index650)=>(null !== elem || _report(_exceptionable, {
|
|
31389
31389
|
path: _path + ".copy[" + _index650 + "]",
|
|
31390
|
-
expected: "(
|
|
31390
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
31391
31391
|
value: elem
|
|
31392
31392
|
})) && (void 0 !== elem || _report(_exceptionable, {
|
|
31393
31393
|
path: _path + ".copy[" + _index650 + "]",
|
|
31394
|
-
expected: "(
|
|
31394
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
31395
31395
|
value: elem
|
|
31396
31396
|
})) && ("string" == typeof elem || ("object" == typeof elem && null !== elem || _report(_exceptionable, {
|
|
31397
31397
|
path: _path + ".copy[" + _index650 + "]",
|
|
31398
|
-
expected: "(
|
|
31398
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
31399
31399
|
value: elem
|
|
31400
31400
|
})) && _vo378(elem, _path + ".copy[" + _index650 + "]", _exceptionable) || _report(_exceptionable, {
|
|
31401
31401
|
path: _path + ".copy[" + _index650 + "]",
|
|
31402
|
-
expected: "(
|
|
31402
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
31403
31403
|
value: elem
|
|
31404
31404
|
}))).every((flag)=>flag) || "object" == typeof input.copy && null !== input.copy && _vo377(input.copy, _path + ".copy", _exceptionable) || _report(_exceptionable, {
|
|
31405
31405
|
path: _path + ".copy",
|
|
31406
|
-
expected: "(Array<string | (
|
|
31406
|
+
expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
|
|
31407
31407
|
value: input.copy
|
|
31408
31408
|
}) || _report(_exceptionable, {
|
|
31409
31409
|
path: _path + ".copy",
|
|
31410
|
-
expected: "(Array<string | (
|
|
31410
|
+
expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
|
|
31411
31411
|
value: input.copy
|
|
31412
31412
|
})),
|
|
31413
31413
|
void 0 === input.emitAssets || "boolean" == typeof input.emitAssets || _report(_exceptionable, {
|
|
@@ -31762,9 +31762,9 @@ export const __webpack_modules__ = {
|
|
|
31762
31762
|
}).every((flag)=>flag)
|
|
31763
31763
|
].every((flag)=>flag);
|
|
31764
31764
|
const _vo364 = (input, _path, _exceptionable = true)=>[
|
|
31765
|
-
void 0 === input.js || "
|
|
31765
|
+
void 0 === input.js || "boolean" == typeof input.js || _report(_exceptionable, {
|
|
31766
31766
|
path: _path + ".js",
|
|
31767
|
-
expected: "(
|
|
31767
|
+
expected: "(boolean | undefined)",
|
|
31768
31768
|
value: input.js
|
|
31769
31769
|
}),
|
|
31770
31770
|
void 0 === input.jsOptions || ("object" == typeof input.jsOptions && null !== input.jsOptions && false === Array.isArray(input.jsOptions) || _report(_exceptionable, {
|
|
@@ -31776,9 +31776,9 @@ export const __webpack_modules__ = {
|
|
|
31776
31776
|
expected: "(SwcJsMinimizerRspackPluginOptions | undefined)",
|
|
31777
31777
|
value: input.jsOptions
|
|
31778
31778
|
}),
|
|
31779
|
-
void 0 === input.css || "
|
|
31779
|
+
void 0 === input.css || "boolean" == typeof input.css || _report(_exceptionable, {
|
|
31780
31780
|
path: _path + ".css",
|
|
31781
|
-
expected: "(
|
|
31781
|
+
expected: "(boolean | undefined)",
|
|
31782
31782
|
value: input.css
|
|
31783
31783
|
}),
|
|
31784
31784
|
void 0 === input.cssOptions || ("object" == typeof input.cssOptions && null !== input.cssOptions && false === Array.isArray(input.cssOptions) || _report(_exceptionable, {
|
|
@@ -32947,27 +32947,27 @@ export const __webpack_modules__ = {
|
|
|
32947
32947
|
const _vo377 = (input, _path, _exceptionable = true)=>[
|
|
32948
32948
|
(Array.isArray(input.patterns) || _report(_exceptionable, {
|
|
32949
32949
|
path: _path + ".patterns",
|
|
32950
|
-
expected: "Array<string | (
|
|
32950
|
+
expected: "Array<string | ({ from: string; } & Partial<RawCopyPattern>)>",
|
|
32951
32951
|
value: input.patterns
|
|
32952
32952
|
})) && input.patterns.map((elem, _index663)=>(null !== elem || _report(_exceptionable, {
|
|
32953
32953
|
path: _path + ".patterns[" + _index663 + "]",
|
|
32954
|
-
expected: "(
|
|
32954
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
32955
32955
|
value: elem
|
|
32956
32956
|
})) && (void 0 !== elem || _report(_exceptionable, {
|
|
32957
32957
|
path: _path + ".patterns[" + _index663 + "]",
|
|
32958
|
-
expected: "(
|
|
32958
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
32959
32959
|
value: elem
|
|
32960
32960
|
})) && ("string" == typeof elem || ("object" == typeof elem && null !== elem || _report(_exceptionable, {
|
|
32961
32961
|
path: _path + ".patterns[" + _index663 + "]",
|
|
32962
|
-
expected: "(
|
|
32962
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
32963
32963
|
value: elem
|
|
32964
32964
|
})) && _vo378(elem, _path + ".patterns[" + _index663 + "]", _exceptionable) || _report(_exceptionable, {
|
|
32965
32965
|
path: _path + ".patterns[" + _index663 + "]",
|
|
32966
|
-
expected: "(
|
|
32966
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
32967
32967
|
value: elem
|
|
32968
32968
|
}))).every((flag)=>flag) || _report(_exceptionable, {
|
|
32969
32969
|
path: _path + ".patterns",
|
|
32970
|
-
expected: "Array<string | (
|
|
32970
|
+
expected: "Array<string | ({ from: string; } & Partial<RawCopyPattern>)>",
|
|
32971
32971
|
value: input.patterns
|
|
32972
32972
|
}),
|
|
32973
32973
|
1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
|
|
@@ -32989,20 +32989,6 @@ export const __webpack_modules__ = {
|
|
|
32989
32989
|
expected: "string",
|
|
32990
32990
|
value: input.from
|
|
32991
32991
|
}),
|
|
32992
|
-
void 0 === input.info || ("object" == typeof input.info && null !== input.info && false === Array.isArray(input.info) || _report(_exceptionable, {
|
|
32993
|
-
path: _path + ".info",
|
|
32994
|
-
expected: "(RawInfo | undefined)",
|
|
32995
|
-
value: input.info
|
|
32996
|
-
})) && _vo379(input.info, _path + ".info", _exceptionable) || _report(_exceptionable, {
|
|
32997
|
-
path: _path + ".info",
|
|
32998
|
-
expected: "(RawInfo | undefined)",
|
|
32999
|
-
value: input.info
|
|
33000
|
-
}),
|
|
33001
|
-
void 0 === input.context || "string" == typeof input.context || _report(_exceptionable, {
|
|
33002
|
-
path: _path + ".context",
|
|
33003
|
-
expected: "(string | undefined)",
|
|
33004
|
-
value: input.context
|
|
33005
|
-
}),
|
|
33006
32992
|
(null !== input.to || _report(_exceptionable, {
|
|
33007
32993
|
path: _path + ".to",
|
|
33008
32994
|
expected: "(string | undefined)",
|
|
@@ -33012,6 +32998,11 @@ export const __webpack_modules__ = {
|
|
|
33012
32998
|
expected: "(string | undefined)",
|
|
33013
32999
|
value: input.to
|
|
33014
33000
|
})),
|
|
33001
|
+
void 0 === input.context || "string" == typeof input.context || _report(_exceptionable, {
|
|
33002
|
+
path: _path + ".context",
|
|
33003
|
+
expected: "(string | undefined)",
|
|
33004
|
+
value: input.context
|
|
33005
|
+
}),
|
|
33015
33006
|
void 0 === input.toType || "string" == typeof input.toType || _report(_exceptionable, {
|
|
33016
33007
|
path: _path + ".toType",
|
|
33017
33008
|
expected: "(string | undefined)",
|
|
@@ -33036,11 +33027,20 @@ export const __webpack_modules__ = {
|
|
|
33036
33027
|
path: _path + ".globOptions",
|
|
33037
33028
|
expected: "(RawCopyGlobOptions | undefined)",
|
|
33038
33029
|
value: input.globOptions
|
|
33039
|
-
})) &&
|
|
33030
|
+
})) && _vo379(input.globOptions, _path + ".globOptions", _exceptionable) || _report(_exceptionable, {
|
|
33040
33031
|
path: _path + ".globOptions",
|
|
33041
33032
|
expected: "(RawCopyGlobOptions | undefined)",
|
|
33042
33033
|
value: input.globOptions
|
|
33043
33034
|
}),
|
|
33035
|
+
void 0 === input.info || ("object" == typeof input.info && null !== input.info && false === Array.isArray(input.info) || _report(_exceptionable, {
|
|
33036
|
+
path: _path + ".info",
|
|
33037
|
+
expected: "(RawInfo | undefined)",
|
|
33038
|
+
value: input.info
|
|
33039
|
+
})) && _vo380(input.info, _path + ".info", _exceptionable) || _report(_exceptionable, {
|
|
33040
|
+
path: _path + ".info",
|
|
33041
|
+
expected: "(RawInfo | undefined)",
|
|
33042
|
+
value: input.info
|
|
33043
|
+
}),
|
|
33044
33044
|
void 0 === input.copyPermissions || "boolean" == typeof input.copyPermissions || _report(_exceptionable, {
|
|
33045
33045
|
path: _path + ".copyPermissions",
|
|
33046
33046
|
expected: "(boolean | undefined)",
|
|
@@ -33048,28 +33048,28 @@ export const __webpack_modules__ = {
|
|
|
33048
33048
|
}),
|
|
33049
33049
|
(null !== input.transform || _report(_exceptionable, {
|
|
33050
33050
|
path: _path + ".transform",
|
|
33051
|
-
expected: "(__type.
|
|
33051
|
+
expected: "(__type.o112 | undefined)",
|
|
33052
33052
|
value: input.transform
|
|
33053
33053
|
})) && (void 0 === input.transform || "function" == typeof input.transform || ("object" == typeof input.transform && null !== input.transform || _report(_exceptionable, {
|
|
33054
33054
|
path: _path + ".transform",
|
|
33055
|
-
expected: "(__type.
|
|
33055
|
+
expected: "(__type.o112 | undefined)",
|
|
33056
33056
|
value: input.transform
|
|
33057
33057
|
})) && _vo382(input.transform, _path + ".transform", _exceptionable) || _report(_exceptionable, {
|
|
33058
33058
|
path: _path + ".transform",
|
|
33059
|
-
expected: "(__type.
|
|
33059
|
+
expected: "(__type.o112 | undefined)",
|
|
33060
33060
|
value: input.transform
|
|
33061
33061
|
})),
|
|
33062
33062
|
1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
|
|
33063
33063
|
if ([
|
|
33064
33064
|
"from",
|
|
33065
|
-
"info",
|
|
33066
|
-
"context",
|
|
33067
33065
|
"to",
|
|
33066
|
+
"context",
|
|
33068
33067
|
"toType",
|
|
33069
33068
|
"noErrorOnMissing",
|
|
33070
33069
|
"force",
|
|
33071
33070
|
"priority",
|
|
33072
33071
|
"globOptions",
|
|
33072
|
+
"info",
|
|
33073
33073
|
"copyPermissions",
|
|
33074
33074
|
"transform"
|
|
33075
33075
|
].some((prop)=>key === prop)) return true;
|
|
@@ -33083,6 +33083,45 @@ export const __webpack_modules__ = {
|
|
|
33083
33083
|
}).every((flag)=>flag)
|
|
33084
33084
|
].every((flag)=>flag);
|
|
33085
33085
|
const _vo379 = (input, _path, _exceptionable = true)=>[
|
|
33086
|
+
void 0 === input.caseSensitiveMatch || "boolean" == typeof input.caseSensitiveMatch || _report(_exceptionable, {
|
|
33087
|
+
path: _path + ".caseSensitiveMatch",
|
|
33088
|
+
expected: "(boolean | undefined)",
|
|
33089
|
+
value: input.caseSensitiveMatch
|
|
33090
|
+
}),
|
|
33091
|
+
void 0 === input.dot || "boolean" == typeof input.dot || _report(_exceptionable, {
|
|
33092
|
+
path: _path + ".dot",
|
|
33093
|
+
expected: "(boolean | undefined)",
|
|
33094
|
+
value: input.dot
|
|
33095
|
+
}),
|
|
33096
|
+
void 0 === input.ignore || (Array.isArray(input.ignore) || _report(_exceptionable, {
|
|
33097
|
+
path: _path + ".ignore",
|
|
33098
|
+
expected: "(Array<string> | undefined)",
|
|
33099
|
+
value: input.ignore
|
|
33100
|
+
})) && input.ignore.map((elem, _index664)=>"string" == typeof elem || _report(_exceptionable, {
|
|
33101
|
+
path: _path + ".ignore[" + _index664 + "]",
|
|
33102
|
+
expected: "string",
|
|
33103
|
+
value: elem
|
|
33104
|
+
})).every((flag)=>flag) || _report(_exceptionable, {
|
|
33105
|
+
path: _path + ".ignore",
|
|
33106
|
+
expected: "(Array<string> | undefined)",
|
|
33107
|
+
value: input.ignore
|
|
33108
|
+
}),
|
|
33109
|
+
0 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
|
|
33110
|
+
if ([
|
|
33111
|
+
"caseSensitiveMatch",
|
|
33112
|
+
"dot",
|
|
33113
|
+
"ignore"
|
|
33114
|
+
].some((prop)=>key === prop)) return true;
|
|
33115
|
+
const value = input[key];
|
|
33116
|
+
if (void 0 === value) return true;
|
|
33117
|
+
return _report(_exceptionable, {
|
|
33118
|
+
path: _path + typia_lib_internal_accessExpressionAsString_js__WEBPACK_IMPORTED_MODULE_0__._accessExpressionAsString(key),
|
|
33119
|
+
expected: "undefined",
|
|
33120
|
+
value: value
|
|
33121
|
+
});
|
|
33122
|
+
}).every((flag)=>flag)
|
|
33123
|
+
].every((flag)=>flag);
|
|
33124
|
+
const _vo380 = (input, _path, _exceptionable = true)=>[
|
|
33086
33125
|
void 0 === input.immutable || "boolean" == typeof input.immutable || _report(_exceptionable, {
|
|
33087
33126
|
path: _path + ".immutable",
|
|
33088
33127
|
expected: "(boolean | undefined)",
|
|
@@ -33097,8 +33136,8 @@ export const __webpack_modules__ = {
|
|
|
33097
33136
|
path: _path + ".chunkHash",
|
|
33098
33137
|
expected: "(Array<string> | undefined)",
|
|
33099
33138
|
value: input.chunkHash
|
|
33100
|
-
})) && input.chunkHash.map((elem,
|
|
33101
|
-
path: _path + ".chunkHash[" +
|
|
33139
|
+
})) && input.chunkHash.map((elem, _index665)=>"string" == typeof elem || _report(_exceptionable, {
|
|
33140
|
+
path: _path + ".chunkHash[" + _index665 + "]",
|
|
33102
33141
|
expected: "string",
|
|
33103
33142
|
value: elem
|
|
33104
33143
|
})).every((flag)=>flag) || _report(_exceptionable, {
|
|
@@ -33110,8 +33149,8 @@ export const __webpack_modules__ = {
|
|
|
33110
33149
|
path: _path + ".contentHash",
|
|
33111
33150
|
expected: "(Array<string> | undefined)",
|
|
33112
33151
|
value: input.contentHash
|
|
33113
|
-
})) && input.contentHash.map((elem,
|
|
33114
|
-
path: _path + ".contentHash[" +
|
|
33152
|
+
})) && input.contentHash.map((elem, _index666)=>"string" == typeof elem || _report(_exceptionable, {
|
|
33153
|
+
path: _path + ".contentHash[" + _index666 + "]",
|
|
33115
33154
|
expected: "string",
|
|
33116
33155
|
value: elem
|
|
33117
33156
|
})).every((flag)=>flag) || _report(_exceptionable, {
|
|
@@ -33133,7 +33172,7 @@ export const __webpack_modules__ = {
|
|
|
33133
33172
|
path: _path + ".related",
|
|
33134
33173
|
expected: "(RawRelated | undefined)",
|
|
33135
33174
|
value: input.related
|
|
33136
|
-
})) &&
|
|
33175
|
+
})) && _vo381(input.related, _path + ".related", _exceptionable) || _report(_exceptionable, {
|
|
33137
33176
|
path: _path + ".related",
|
|
33138
33177
|
expected: "(RawRelated | undefined)",
|
|
33139
33178
|
value: input.related
|
|
@@ -33163,7 +33202,7 @@ export const __webpack_modules__ = {
|
|
|
33163
33202
|
});
|
|
33164
33203
|
}).every((flag)=>flag)
|
|
33165
33204
|
].every((flag)=>flag);
|
|
33166
|
-
const
|
|
33205
|
+
const _vo381 = (input, _path, _exceptionable = true)=>[
|
|
33167
33206
|
void 0 === input.sourceMap || "string" == typeof input.sourceMap || _report(_exceptionable, {
|
|
33168
33207
|
path: _path + ".sourceMap",
|
|
33169
33208
|
expected: "(string | undefined)",
|
|
@@ -33182,45 +33221,6 @@ export const __webpack_modules__ = {
|
|
|
33182
33221
|
});
|
|
33183
33222
|
}).every((flag)=>flag)
|
|
33184
33223
|
].every((flag)=>flag);
|
|
33185
|
-
const _vo381 = (input, _path, _exceptionable = true)=>[
|
|
33186
|
-
void 0 === input.caseSensitiveMatch || "boolean" == typeof input.caseSensitiveMatch || _report(_exceptionable, {
|
|
33187
|
-
path: _path + ".caseSensitiveMatch",
|
|
33188
|
-
expected: "(boolean | undefined)",
|
|
33189
|
-
value: input.caseSensitiveMatch
|
|
33190
|
-
}),
|
|
33191
|
-
void 0 === input.dot || "boolean" == typeof input.dot || _report(_exceptionable, {
|
|
33192
|
-
path: _path + ".dot",
|
|
33193
|
-
expected: "(boolean | undefined)",
|
|
33194
|
-
value: input.dot
|
|
33195
|
-
}),
|
|
33196
|
-
void 0 === input.ignore || (Array.isArray(input.ignore) || _report(_exceptionable, {
|
|
33197
|
-
path: _path + ".ignore",
|
|
33198
|
-
expected: "(Array<string> | undefined)",
|
|
33199
|
-
value: input.ignore
|
|
33200
|
-
})) && input.ignore.map((elem, _index666)=>"string" == typeof elem || _report(_exceptionable, {
|
|
33201
|
-
path: _path + ".ignore[" + _index666 + "]",
|
|
33202
|
-
expected: "string",
|
|
33203
|
-
value: elem
|
|
33204
|
-
})).every((flag)=>flag) || _report(_exceptionable, {
|
|
33205
|
-
path: _path + ".ignore",
|
|
33206
|
-
expected: "(Array<string> | undefined)",
|
|
33207
|
-
value: input.ignore
|
|
33208
|
-
}),
|
|
33209
|
-
0 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
|
|
33210
|
-
if ([
|
|
33211
|
-
"caseSensitiveMatch",
|
|
33212
|
-
"dot",
|
|
33213
|
-
"ignore"
|
|
33214
|
-
].some((prop)=>key === prop)) return true;
|
|
33215
|
-
const value = input[key];
|
|
33216
|
-
if (void 0 === value) return true;
|
|
33217
|
-
return _report(_exceptionable, {
|
|
33218
|
-
path: _path + typia_lib_internal_accessExpressionAsString_js__WEBPACK_IMPORTED_MODULE_0__._accessExpressionAsString(key),
|
|
33219
|
-
expected: "undefined",
|
|
33220
|
-
value: value
|
|
33221
|
-
});
|
|
33222
|
-
}).every((flag)=>flag)
|
|
33223
|
-
].every((flag)=>flag);
|
|
33224
33224
|
const _vo382 = (input, _path, _exceptionable = true)=>[
|
|
33225
33225
|
true,
|
|
33226
33226
|
1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
|
|
@@ -34487,14 +34487,14 @@ export const __webpack_modules__ = {
|
|
|
34487
34487
|
}).every((flag)=>flag)
|
|
34488
34488
|
].every((flag)=>flag);
|
|
34489
34489
|
const _vo405 = (input, _path, _exceptionable = true)=>[
|
|
34490
|
-
"string" == typeof input["__@toStringTag@
|
|
34491
|
-
path: _path + "[\"__@toStringTag@
|
|
34490
|
+
"string" == typeof input["__@toStringTag@6636"] || _report(_exceptionable, {
|
|
34491
|
+
path: _path + "[\"__@toStringTag@6636\"]",
|
|
34492
34492
|
expected: "string",
|
|
34493
|
-
value: input["__@toStringTag@
|
|
34493
|
+
value: input["__@toStringTag@6636"]
|
|
34494
34494
|
}),
|
|
34495
34495
|
1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
|
|
34496
34496
|
if ([
|
|
34497
|
-
"__@toStringTag@
|
|
34497
|
+
"__@toStringTag@6636"
|
|
34498
34498
|
].some((prop)=>key === prop)) return true;
|
|
34499
34499
|
const value = input[key];
|
|
34500
34500
|
if (void 0 === value) return true;
|
|
@@ -34518,31 +34518,31 @@ export const __webpack_modules__ = {
|
|
|
34518
34518
|
}),
|
|
34519
34519
|
(null !== input.copy || _report(_exceptionable, {
|
|
34520
34520
|
path: _path + ".copy",
|
|
34521
|
-
expected: "(Array<string | (
|
|
34521
|
+
expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
|
|
34522
34522
|
value: input.copy
|
|
34523
34523
|
})) && (void 0 === input.copy || Array.isArray(input.copy) && input.copy.map((elem, _index692)=>(null !== elem || _report(_exceptionable, {
|
|
34524
34524
|
path: _path + ".copy[" + _index692 + "]",
|
|
34525
|
-
expected: "(
|
|
34525
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
34526
34526
|
value: elem
|
|
34527
34527
|
})) && (void 0 !== elem || _report(_exceptionable, {
|
|
34528
34528
|
path: _path + ".copy[" + _index692 + "]",
|
|
34529
|
-
expected: "(
|
|
34529
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
34530
34530
|
value: elem
|
|
34531
34531
|
})) && ("string" == typeof elem || ("object" == typeof elem && null !== elem || _report(_exceptionable, {
|
|
34532
34532
|
path: _path + ".copy[" + _index692 + "]",
|
|
34533
|
-
expected: "(
|
|
34533
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
34534
34534
|
value: elem
|
|
34535
34535
|
})) && _vo378(elem, _path + ".copy[" + _index692 + "]", _exceptionable) || _report(_exceptionable, {
|
|
34536
34536
|
path: _path + ".copy[" + _index692 + "]",
|
|
34537
|
-
expected: "(
|
|
34537
|
+
expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
|
|
34538
34538
|
value: elem
|
|
34539
34539
|
}))).every((flag)=>flag) || "object" == typeof input.copy && null !== input.copy && _vo377(input.copy, _path + ".copy", _exceptionable) || _report(_exceptionable, {
|
|
34540
34540
|
path: _path + ".copy",
|
|
34541
|
-
expected: "(Array<string | (
|
|
34541
|
+
expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
|
|
34542
34542
|
value: input.copy
|
|
34543
34543
|
}) || _report(_exceptionable, {
|
|
34544
34544
|
path: _path + ".copy",
|
|
34545
|
-
expected: "(Array<string | (
|
|
34545
|
+
expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
|
|
34546
34546
|
value: input.copy
|
|
34547
34547
|
})),
|
|
34548
34548
|
void 0 === input.cssModules || ("object" == typeof input.cssModules && null !== input.cssModules && false === Array.isArray(input.cssModules) || _report(_exceptionable, {
|
|
@@ -35837,11 +35837,11 @@ export const __webpack_modules__ = {
|
|
|
35837
35837
|
}),
|
|
35838
35838
|
void 0 === input.loaderInterceptorOptions || ("object" == typeof input.loaderInterceptorOptions && null !== input.loaderInterceptorOptions && false === Array.isArray(input.loaderInterceptorOptions) || _report(_exceptionable, {
|
|
35839
35839
|
path: _path + ".loaderInterceptorOptions",
|
|
35840
|
-
expected: "(__type.
|
|
35840
|
+
expected: "(__type.o117 | undefined)",
|
|
35841
35841
|
value: input.loaderInterceptorOptions
|
|
35842
35842
|
})) && _vo441(input.loaderInterceptorOptions, _path + ".loaderInterceptorOptions", _exceptionable) || _report(_exceptionable, {
|
|
35843
35843
|
path: _path + ".loaderInterceptorOptions",
|
|
35844
|
-
expected: "(__type.
|
|
35844
|
+
expected: "(__type.o117 | undefined)",
|
|
35845
35845
|
value: input.loaderInterceptorOptions
|
|
35846
35846
|
}),
|
|
35847
35847
|
void 0 === input.disableClientServer || "boolean" == typeof input.disableClientServer || _report(_exceptionable, {
|
|
@@ -35897,11 +35897,11 @@ export const __webpack_modules__ = {
|
|
|
35897
35897
|
}),
|
|
35898
35898
|
void 0 === input.output || ("object" == typeof input.output && null !== input.output && false === Array.isArray(input.output) || _report(_exceptionable, {
|
|
35899
35899
|
path: _path + ".output",
|
|
35900
|
-
expected: "(__type.
|
|
35900
|
+
expected: "(__type.o118 | undefined)",
|
|
35901
35901
|
value: input.output
|
|
35902
35902
|
})) && _vo455(input.output, _path + ".output", _exceptionable) || _report(_exceptionable, {
|
|
35903
35903
|
path: _path + ".output",
|
|
35904
|
-
expected: "(__type.
|
|
35904
|
+
expected: "(__type.o118 | undefined)",
|
|
35905
35905
|
value: input.output
|
|
35906
35906
|
}),
|
|
35907
35907
|
0 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
|
|
@@ -37199,7 +37199,7 @@ export const __webpack_modules__ = {
|
|
|
37199
37199
|
});
|
|
37200
37200
|
})();
|
|
37201
37201
|
const _vu3 = (input, _path, _exceptionable = true)=>(()=>{
|
|
37202
|
-
if (void 0 !== input["__@toStringTag@
|
|
37202
|
+
if (void 0 !== input["__@toStringTag@6636"]) return _vo155(input, _path, _exceptionable);
|
|
37203
37203
|
if (void 0 !== input.pem) return _vo156(input, _path, _exceptionable);
|
|
37204
37204
|
return _report(_exceptionable, {
|
|
37205
37205
|
path: _path,
|
|
@@ -37208,7 +37208,7 @@ export const __webpack_modules__ = {
|
|
|
37208
37208
|
});
|
|
37209
37209
|
})();
|
|
37210
37210
|
const _vu4 = (input, _path, _exceptionable = true)=>(()=>{
|
|
37211
|
-
if (void 0 !== input["__@toStringTag@
|
|
37211
|
+
if (void 0 !== input["__@toStringTag@6636"]) return _vo155(input, _path, _exceptionable);
|
|
37212
37212
|
if (void 0 !== input.buf) return _vo157(input, _path, _exceptionable);
|
|
37213
37213
|
return _report(_exceptionable, {
|
|
37214
37214
|
path: _path,
|
|
@@ -37218,7 +37218,7 @@ export const __webpack_modules__ = {
|
|
|
37218
37218
|
})();
|
|
37219
37219
|
const _vu5 = (input, _path, _exceptionable = true)=>(()=>{
|
|
37220
37220
|
if (void 0 !== input.name) return _vo404(input, _path, _exceptionable);
|
|
37221
|
-
if (void 0 !== input["__@toStringTag@
|
|
37221
|
+
if (void 0 !== input["__@toStringTag@6636"]) return _vo405(input, _path, _exceptionable);
|
|
37222
37222
|
return _report(_exceptionable, {
|
|
37223
37223
|
path: _path,
|
|
37224
37224
|
expected: "(LooseRsbuildPlugin | RsbuildPlugins | LooseRsbuildPlugin | Falsy)",
|
|
@@ -18,7 +18,7 @@ export const __webpack_modules__ = {
|
|
|
18
18
|
setup (api) {
|
|
19
19
|
api.modifyBundlerChain((chain, { environment })=>{
|
|
20
20
|
if ((0, is_web.$)(environment)) return void chain.output.chunkLoading("import-scripts").end();
|
|
21
|
-
if (isLynx(environment)) chain.plugin('lynx:chunk-loading').use(chunk_loading_webpack_plugin_.ChunkLoadingWebpackPlugin).end().output.chunkLoading('lynx').chunkFormat('commonjs').
|
|
21
|
+
if (isLynx(environment)) chain.plugin('lynx:chunk-loading').use(chunk_loading_webpack_plugin_.ChunkLoadingWebpackPlugin).end().output.chunkLoading('lynx').chunkFormat('commonjs').end();
|
|
22
22
|
});
|
|
23
23
|
}
|
|
24
24
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/rspeedy-canary",
|
|
3
|
-
"version": "0.9.8-canary-
|
|
3
|
+
"version": "0.9.8-canary-20250531-f65eeebe",
|
|
4
4
|
"description": "A webpack/rspack-based frontend toolchain for Lynx",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@lynx-js/chunk-loading-webpack-plugin": "npm:@lynx-js/chunk-loading-webpack-plugin-canary@0.3.0",
|
|
50
50
|
"@lynx-js/webpack-dev-transport": "npm:@lynx-js/webpack-dev-transport-canary@0.1.3",
|
|
51
51
|
"@lynx-js/websocket": "npm:@lynx-js/websocket-canary@0.0.4",
|
|
52
|
-
"@rsbuild/core": "1.3.
|
|
52
|
+
"@rsbuild/core": "1.3.21",
|
|
53
53
|
"@rsbuild/plugin-css-minimizer": "1.0.2",
|
|
54
54
|
"@rsdoctor/rspack-plugin": "1.1.2"
|
|
55
55
|
},
|