@lynx-js/rspeedy-canary 0.9.8-canary-20250528-bf12d573 → 0.9.8-canary-20250530-5f0ce5c3

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 CHANGED
@@ -1,10 +1,12 @@
1
1
  # @lynx-js/rspeedy
2
2
 
3
- ## 0.9.8-canary-20250528052048-bf12d57311939c96b261f46017e07dd9227ab0d6
3
+ ## 0.9.8-canary-20250530131803-5f0ce5c3bc910a34e20281aa10e84228aea3a888
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - Bump Rsbuild v1.3.22 with Rspack v1.3.12. ([#939](https://github.com/lynx-family/lynx-stack/pull/939))
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/cli/main.js CHANGED
@@ -194,9 +194,9 @@ var __webpack_modules__ = {
194
194
  NW: ()=>debugList,
195
195
  fF: ()=>debug
196
196
  });
197
- var _rsbuild_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("@rsbuild/core");
198
- var picocolors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("../../../node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors/picocolors.js");
199
- var picocolors__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/ __webpack_require__.n(picocolors__WEBPACK_IMPORTED_MODULE_0__);
197
+ var _rsbuild_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("@rsbuild/core");
198
+ var picocolors__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("../../../node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors/picocolors.js");
199
+ var picocolors__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(picocolors__WEBPACK_IMPORTED_MODULE_1__);
200
200
  const isDebug = ()=>{
201
201
  if (!process.env['DEBUG']) return false;
202
202
  const values = process.env['DEBUG'].toLocaleLowerCase().split(',');
@@ -206,12 +206,12 @@ var __webpack_modules__ = {
206
206
  '*'
207
207
  ].some((key)=>values.includes(key));
208
208
  };
209
- const label = picocolors__WEBPACK_IMPORTED_MODULE_0___default().bgCyan('lynx');
209
+ const label = picocolors__WEBPACK_IMPORTED_MODULE_1___default().bgCyan('lynx');
210
210
  const debug = (message)=>{
211
211
  if (isDebug()) {
212
212
  const result = 'string' == typeof message ? message : message();
213
- _rsbuild_core__WEBPACK_IMPORTED_MODULE_1__.logger.level = 'verbose';
214
- _rsbuild_core__WEBPACK_IMPORTED_MODULE_1__.logger.debug(`${label} ${result}`);
213
+ _rsbuild_core__WEBPACK_IMPORTED_MODULE_0__.logger.level = 'verbose';
214
+ _rsbuild_core__WEBPACK_IMPORTED_MODULE_0__.logger.debug(`${label} ${result}`);
215
215
  }
216
216
  };
217
217
  const debugList = (prefix, messages)=>debug(()=>`${prefix} ${[
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,
@@ -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__.S)(cwd, buildOptions);
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
- S: ()=>init
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,
@@ -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__.S)(cwd, devOptions);
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
- S: ()=>init
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
- S: ()=>init
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__.S)(cwd, inspectOptions);
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
- S: ()=>init
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__.S)(cwd, previewOptions);
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@6634"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
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@6634"
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@6634"] && Object.keys(input).every((key)=>{
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@6634"
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;
@@ -3077,7 +3077,7 @@ export const __webpack_modules__ = {
3077
3077
  if (void 0 === value) return true;
3078
3078
  return false;
3079
3079
  }));
3080
- const _io162 = (input, _exceptionable = true)=>Array.isArray(input.autoSelectFamilyAttemptedAddresses) && input.autoSelectFamilyAttemptedAddresses.every((elem, _index132)=>"string" == typeof elem) && "number" == typeof input.bufferSize && "number" == typeof input.bytesRead && "number" == typeof input.bytesWritten && "boolean" == typeof input.connecting && "boolean" == typeof input.pending && "boolean" == typeof input.destroyed && (void 0 === input.localAddress || "string" == typeof input.localAddress) && (void 0 === input.localPort || "number" == typeof input.localPort) && (void 0 === input.localFamily || "string" == typeof input.localFamily) && ("opening" === input.readyState || "open" === input.readyState || "readOnly" === input.readyState || "writeOnly" === input.readyState || "closed" === input.readyState) && (void 0 === input.remoteAddress || "string" == typeof input.remoteAddress) && (void 0 === input.remoteFamily || "string" == typeof input.remoteFamily) && (void 0 === input.remotePort || "number" == typeof input.remotePort) && (void 0 === input.timeout || "number" == typeof input.timeout) && "boolean" == typeof input.allowHalfOpen && "boolean" == typeof input.readableAborted && "boolean" == typeof input.readable && "boolean" == typeof input.readableDidRead && (null === input.readableEncoding || true === _iv133.has(input.readableEncoding)) && "boolean" == typeof input.readableEnded && (null === input.readableFlowing || "boolean" == typeof input.readableFlowing) && "number" == typeof input.readableHighWaterMark && "number" == typeof input.readableLength && "boolean" == typeof input.readableObjectMode && "boolean" == typeof input.closed && (null === input.errored || "object" == typeof input.errored && null !== input.errored && _io163(input.errored, _exceptionable)) && "boolean" == typeof input.writable && "boolean" == typeof input.writableEnded && "boolean" == typeof input.writableFinished && "number" == typeof input.writableHighWaterMark && "number" == typeof input.writableLength && "boolean" == typeof input.writableObjectMode && "number" == typeof input.writableCorked && "boolean" == typeof input.writableNeedDrain && (28 === Object.keys(input).length || Object.keys(input).every((key)=>{
3080
+ const _io162 = (input, _exceptionable = true)=>Array.isArray(input.autoSelectFamilyAttemptedAddresses) && input.autoSelectFamilyAttemptedAddresses.every((elem, _index132)=>"string" == typeof elem) && "number" == typeof input.bufferSize && "number" == typeof input.bytesRead && "number" == typeof input.bytesWritten && "boolean" == typeof input.connecting && "boolean" == typeof input.pending && "boolean" == typeof input.destroyed && (void 0 === input.localAddress || "string" == typeof input.localAddress) && (void 0 === input.localPort || "number" == typeof input.localPort) && (void 0 === input.localFamily || "string" == typeof input.localFamily) && ("opening" === input.readyState || "open" === input.readyState || "readOnly" === input.readyState || "writeOnly" === input.readyState || "closed" === input.readyState) && (void 0 === input.remoteAddress || "string" == typeof input.remoteAddress) && (void 0 === input.remoteFamily || "string" == typeof input.remoteFamily) && (void 0 === input.remotePort || "number" == typeof input.remotePort) && (void 0 === input.timeout || "number" == typeof input.timeout) && "boolean" == typeof input.allowHalfOpen && "boolean" == typeof input.readableAborted && "boolean" == typeof input.readable && "boolean" == typeof input.readableDidRead && (null === input.readableEncoding || true === _iv133.has(input.readableEncoding)) && "boolean" == typeof input.readableEnded && (null === input.readableFlowing || "boolean" == typeof input.readableFlowing) && "number" == typeof input.readableHighWaterMark && "number" == typeof input.readableLength && "boolean" == typeof input.readableObjectMode && "boolean" == typeof input.closed && (null === input.errored || "object" == typeof input.errored && null !== input.errored && _io163(input.errored, _exceptionable)) && "boolean" == typeof input.writable && "boolean" == typeof input.writableAborted && "boolean" == typeof input.writableEnded && "boolean" == typeof input.writableFinished && "number" == typeof input.writableHighWaterMark && "number" == typeof input.writableLength && "boolean" == typeof input.writableObjectMode && "number" == typeof input.writableCorked && "boolean" == typeof input.writableNeedDrain && (29 === Object.keys(input).length || Object.keys(input).every((key)=>{
3081
3081
  if ([
3082
3082
  "autoSelectFamilyAttemptedAddresses",
3083
3083
  "bufferSize",
@@ -3107,6 +3107,7 @@ export const __webpack_modules__ = {
3107
3107
  "closed",
3108
3108
  "errored",
3109
3109
  "writable",
3110
+ "writableAborted",
3110
3111
  "writableEnded",
3111
3112
  "writableFinished",
3112
3113
  "writableHighWaterMark",
@@ -3231,7 +3232,7 @@ export const __webpack_modules__ = {
3231
3232
  if (void 0 === value) return true;
3232
3233
  return false;
3233
3234
  }));
3234
- const _io168 = (input, _exceptionable = true)=>"number" == typeof input.statusCode && "string" == typeof input.statusMessage && "boolean" == typeof input.strictContentLength && true && "boolean" == typeof input.chunkedEncoding && "boolean" == typeof input.shouldKeepAlive && "boolean" == typeof input.useChunkedEncodingByDefault && "boolean" == typeof input.sendDate && "boolean" == typeof input.finished && "boolean" == typeof input.headersSent && (null === input.connection || "object" == typeof input.connection && null !== input.connection && _io162(input.connection, _exceptionable)) && (null === input.socket || "object" == typeof input.socket && null !== input.socket && _io162(input.socket, _exceptionable)) && "boolean" == typeof input.writable && "boolean" == typeof input.writableEnded && "boolean" == typeof input.writableFinished && "number" == typeof input.writableHighWaterMark && "number" == typeof input.writableLength && "boolean" == typeof input.writableObjectMode && "number" == typeof input.writableCorked && "boolean" == typeof input.destroyed && "boolean" == typeof input.closed && (null === input.errored || "object" == typeof input.errored && null !== input.errored && _io163(input.errored, _exceptionable)) && "boolean" == typeof input.writableNeedDrain && (23 === Object.keys(input).length || Object.keys(input).every((key)=>{
3235
+ const _io168 = (input, _exceptionable = true)=>"number" == typeof input.statusCode && "string" == typeof input.statusMessage && "boolean" == typeof input.strictContentLength && true && "boolean" == typeof input.chunkedEncoding && "boolean" == typeof input.shouldKeepAlive && "boolean" == typeof input.useChunkedEncodingByDefault && "boolean" == typeof input.sendDate && "boolean" == typeof input.finished && "boolean" == typeof input.headersSent && (null === input.connection || "object" == typeof input.connection && null !== input.connection && _io162(input.connection, _exceptionable)) && (null === input.socket || "object" == typeof input.socket && null !== input.socket && _io162(input.socket, _exceptionable)) && "boolean" == typeof input.writable && "boolean" == typeof input.writableAborted && "boolean" == typeof input.writableEnded && "boolean" == typeof input.writableFinished && "number" == typeof input.writableHighWaterMark && "number" == typeof input.writableLength && "boolean" == typeof input.writableObjectMode && "number" == typeof input.writableCorked && "boolean" == typeof input.destroyed && "boolean" == typeof input.closed && (null === input.errored || "object" == typeof input.errored && null !== input.errored && _io163(input.errored, _exceptionable)) && "boolean" == typeof input.writableNeedDrain && (24 === Object.keys(input).length || Object.keys(input).every((key)=>{
3235
3236
  if ([
3236
3237
  "statusCode",
3237
3238
  "statusMessage",
@@ -3246,6 +3247,7 @@ export const __webpack_modules__ = {
3246
3247
  "connection",
3247
3248
  "socket",
3248
3249
  "writable",
3250
+ "writableAborted",
3249
3251
  "writableEnded",
3250
3252
  "writableFinished",
3251
3253
  "writableHighWaterMark",
@@ -5601,7 +5603,7 @@ export const __webpack_modules__ = {
5601
5603
  if (void 0 === value) return true;
5602
5604
  return false;
5603
5605
  }));
5604
- const _io364 = (input, _exceptionable = true)=>(void 0 === input.js || "always" === 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 || "always" === 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)=>{
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)=>{
5605
5607
  if ([
5606
5608
  "js",
5607
5609
  "jsOptions",
@@ -5832,17 +5834,17 @@ export const __webpack_modules__ = {
5832
5834
  if (void 0 === value) return true;
5833
5835
  return false;
5834
5836
  }));
5835
- const _io378 = (input, _exceptionable = true)=>"string" == typeof input.from && (void 0 === input.info || "object" == typeof input.info && null !== input.info && false === Array.isArray(input.info) && _io379(input.info, _exceptionable)) && (void 0 === input.context || "string" == typeof input.context) && null !== input.to && (void 0 === input.to || "function" == typeof input.to || "string" == typeof input.to) && (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) && _io381(input.globOptions, _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)=>{
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)=>{
5836
5838
  if ([
5837
5839
  "from",
5838
- "info",
5839
- "context",
5840
5840
  "to",
5841
+ "context",
5841
5842
  "toType",
5842
5843
  "noErrorOnMissing",
5843
5844
  "force",
5844
5845
  "priority",
5845
5846
  "globOptions",
5847
+ "info",
5846
5848
  "copyPermissions",
5847
5849
  "transform"
5848
5850
  ].some((prop)=>key === prop)) return true;
@@ -5850,7 +5852,17 @@ export const __webpack_modules__ = {
5850
5852
  if (void 0 === value) return true;
5851
5853
  return false;
5852
5854
  }));
5853
- const _io379 = (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, _index300)=>"string" == typeof elem)) && (void 0 === input.contentHash || Array.isArray(input.contentHash) && input.contentHash.every((elem, _index301)=>"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) && _io380(input.related, _exceptionable)) && (void 0 === input.version || "string" == typeof input.version) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
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)=>{
5854
5866
  if ([
5855
5867
  "immutable",
5856
5868
  "minimized",
@@ -5865,7 +5877,7 @@ export const __webpack_modules__ = {
5865
5877
  if (void 0 === value) return true;
5866
5878
  return false;
5867
5879
  }));
5868
- const _io380 = (input, _exceptionable = true)=>(void 0 === input.sourceMap || "string" == typeof input.sourceMap) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
5880
+ const _io381 = (input, _exceptionable = true)=>(void 0 === input.sourceMap || "string" == typeof input.sourceMap) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
5869
5881
  if ([
5870
5882
  "sourceMap"
5871
5883
  ].some((prop)=>key === prop)) return true;
@@ -5873,16 +5885,6 @@ export const __webpack_modules__ = {
5873
5885
  if (void 0 === value) return true;
5874
5886
  return false;
5875
5887
  }));
5876
- 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)=>{
5877
- if ([
5878
- "caseSensitiveMatch",
5879
- "dot",
5880
- "ignore"
5881
- ].some((prop)=>key === prop)) return true;
5882
- const value = input[key];
5883
- if (void 0 === value) return true;
5884
- return false;
5885
- }));
5886
5888
  const _io382 = (input, _exceptionable = true)=>1 === Object.keys(input).length || Object.keys(input).every((key)=>{
5887
5889
  if ([
5888
5890
  "transformer"
@@ -6125,9 +6127,9 @@ export const __webpack_modules__ = {
6125
6127
  if (void 0 === value) return true;
6126
6128
  return false;
6127
6129
  }));
6128
- const _io405 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@6634"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
6130
+ const _io405 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@6636"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
6129
6131
  if ([
6130
- "__@toStringTag@6634"
6132
+ "__@toStringTag@6636"
6131
6133
  ].some((prop)=>key === prop)) return true;
6132
6134
  const value = input[key];
6133
6135
  if (void 0 === value) return true;
@@ -6719,18 +6721,18 @@ export const __webpack_modules__ = {
6719
6721
  return false;
6720
6722
  })();
6721
6723
  const _iu3 = (input, _exceptionable = true)=>(()=>{
6722
- if (void 0 !== input["__@toStringTag@6634"]) return _io155(input, _exceptionable);
6724
+ if (void 0 !== input["__@toStringTag@6636"]) return _io155(input, _exceptionable);
6723
6725
  if (void 0 !== input.pem) return _io156(input, _exceptionable);
6724
6726
  return false;
6725
6727
  })();
6726
6728
  const _iu4 = (input, _exceptionable = true)=>(()=>{
6727
- if (void 0 !== input["__@toStringTag@6634"]) return _io155(input, _exceptionable);
6729
+ if (void 0 !== input["__@toStringTag@6636"]) return _io155(input, _exceptionable);
6728
6730
  if (void 0 !== input.buf) return _io157(input, _exceptionable);
6729
6731
  return false;
6730
6732
  })();
6731
6733
  const _iu5 = (input, _exceptionable = true)=>(()=>{
6732
6734
  if (void 0 !== input.name) return _io404(input, _exceptionable);
6733
- if (void 0 !== input["__@toStringTag@6634"]) return _io405(input, _exceptionable);
6735
+ if (void 0 !== input["__@toStringTag@6636"]) return _io405(input, _exceptionable);
6734
6736
  return false;
6735
6737
  })();
6736
6738
  const _iu6 = (input, _exceptionable = true)=>(()=>{
@@ -9474,14 +9476,14 @@ export const __webpack_modules__ = {
9474
9476
  }).every((flag)=>flag)
9475
9477
  ].every((flag)=>flag);
9476
9478
  const _vo50 = (input, _path, _exceptionable = true)=>[
9477
- "string" == typeof input["__@toStringTag@6634"] || _report(_exceptionable, {
9478
- path: _path + "[\"__@toStringTag@6634\"]",
9479
+ "string" == typeof input["__@toStringTag@6636"] || _report(_exceptionable, {
9480
+ path: _path + "[\"__@toStringTag@6636\"]",
9479
9481
  expected: "string",
9480
- value: input["__@toStringTag@6634"]
9482
+ value: input["__@toStringTag@6636"]
9481
9483
  }),
9482
9484
  1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
9483
9485
  if ([
9484
- "__@toStringTag@6634"
9486
+ "__@toStringTag@6636"
9485
9487
  ].some((prop)=>key === prop)) return true;
9486
9488
  const value = input[key];
9487
9489
  if (void 0 === value) return true;
@@ -17840,10 +17842,10 @@ export const __webpack_modules__ = {
17840
17842
  expected: "number",
17841
17843
  value: input.length
17842
17844
  }),
17843
- "Uint8Array" === input["__@toStringTag@6634"] || _report(_exceptionable, {
17844
- path: _path + "[\"__@toStringTag@6634\"]",
17845
+ "Uint8Array" === input["__@toStringTag@6636"] || _report(_exceptionable, {
17846
+ path: _path + "[\"__@toStringTag@6636\"]",
17845
17847
  expected: "\"Uint8Array\"",
17846
- value: input["__@toStringTag@6634"]
17848
+ value: input["__@toStringTag@6636"]
17847
17849
  }),
17848
17850
  false === _exceptionable || Object.keys(input).map((key)=>{
17849
17851
  if ([
@@ -17852,7 +17854,7 @@ export const __webpack_modules__ = {
17852
17854
  "byteLength",
17853
17855
  "byteOffset",
17854
17856
  "length",
17855
- "__@toStringTag@6634"
17857
+ "__@toStringTag@6636"
17856
17858
  ].some((prop)=>key === prop)) return true;
17857
17859
  const value = input[key];
17858
17860
  if (void 0 === value) return true;
@@ -18431,6 +18433,11 @@ export const __webpack_modules__ = {
18431
18433
  expected: "boolean",
18432
18434
  value: input.writable
18433
18435
  }),
18436
+ "boolean" == typeof input.writableAborted || _report(_exceptionable, {
18437
+ path: _path + ".writableAborted",
18438
+ expected: "boolean",
18439
+ value: input.writableAborted
18440
+ }),
18434
18441
  "boolean" == typeof input.writableEnded || _report(_exceptionable, {
18435
18442
  path: _path + ".writableEnded",
18436
18443
  expected: "boolean",
@@ -18466,7 +18473,7 @@ export const __webpack_modules__ = {
18466
18473
  expected: "boolean",
18467
18474
  value: input.writableNeedDrain
18468
18475
  }),
18469
- 28 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
18476
+ 29 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
18470
18477
  if ([
18471
18478
  "autoSelectFamilyAttemptedAddresses",
18472
18479
  "bufferSize",
@@ -18496,6 +18503,7 @@ export const __webpack_modules__ = {
18496
18503
  "closed",
18497
18504
  "errored",
18498
18505
  "writable",
18506
+ "writableAborted",
18499
18507
  "writableEnded",
18500
18508
  "writableFinished",
18501
18509
  "writableHighWaterMark",
@@ -19150,6 +19158,11 @@ export const __webpack_modules__ = {
19150
19158
  expected: "boolean",
19151
19159
  value: input.writable
19152
19160
  }),
19161
+ "boolean" == typeof input.writableAborted || _report(_exceptionable, {
19162
+ path: _path + ".writableAborted",
19163
+ expected: "boolean",
19164
+ value: input.writableAborted
19165
+ }),
19153
19166
  "boolean" == typeof input.writableEnded || _report(_exceptionable, {
19154
19167
  path: _path + ".writableEnded",
19155
19168
  expected: "boolean",
@@ -19204,7 +19217,7 @@ export const __webpack_modules__ = {
19204
19217
  expected: "boolean",
19205
19218
  value: input.writableNeedDrain
19206
19219
  }),
19207
- 23 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
19220
+ 24 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
19208
19221
  if ([
19209
19222
  "statusCode",
19210
19223
  "statusMessage",
@@ -19219,6 +19232,7 @@ export const __webpack_modules__ = {
19219
19232
  "connection",
19220
19233
  "socket",
19221
19234
  "writable",
19235
+ "writableAborted",
19222
19236
  "writableEnded",
19223
19237
  "writableFinished",
19224
19238
  "writableHighWaterMark",
@@ -31369,31 +31383,31 @@ export const __webpack_modules__ = {
31369
31383
  }),
31370
31384
  (null !== input.copy || _report(_exceptionable, {
31371
31385
  path: _path + ".copy",
31372
- expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
31386
+ expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
31373
31387
  value: input.copy
31374
31388
  })) && (void 0 === input.copy || Array.isArray(input.copy) && input.copy.map((elem, _index650)=>(null !== elem || _report(_exceptionable, {
31375
31389
  path: _path + ".copy[" + _index650 + "]",
31376
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
31390
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
31377
31391
  value: elem
31378
31392
  })) && (void 0 !== elem || _report(_exceptionable, {
31379
31393
  path: _path + ".copy[" + _index650 + "]",
31380
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
31394
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
31381
31395
  value: elem
31382
31396
  })) && ("string" == typeof elem || ("object" == typeof elem && null !== elem || _report(_exceptionable, {
31383
31397
  path: _path + ".copy[" + _index650 + "]",
31384
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
31398
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
31385
31399
  value: elem
31386
31400
  })) && _vo378(elem, _path + ".copy[" + _index650 + "]", _exceptionable) || _report(_exceptionable, {
31387
31401
  path: _path + ".copy[" + _index650 + "]",
31388
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
31402
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
31389
31403
  value: elem
31390
31404
  }))).every((flag)=>flag) || "object" == typeof input.copy && null !== input.copy && _vo377(input.copy, _path + ".copy", _exceptionable) || _report(_exceptionable, {
31391
31405
  path: _path + ".copy",
31392
- expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
31406
+ expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
31393
31407
  value: input.copy
31394
31408
  }) || _report(_exceptionable, {
31395
31409
  path: _path + ".copy",
31396
- expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
31410
+ expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
31397
31411
  value: input.copy
31398
31412
  })),
31399
31413
  void 0 === input.emitAssets || "boolean" == typeof input.emitAssets || _report(_exceptionable, {
@@ -31748,9 +31762,9 @@ export const __webpack_modules__ = {
31748
31762
  }).every((flag)=>flag)
31749
31763
  ].every((flag)=>flag);
31750
31764
  const _vo364 = (input, _path, _exceptionable = true)=>[
31751
- void 0 === input.js || "always" === input.js || "boolean" == typeof input.js || _report(_exceptionable, {
31765
+ void 0 === input.js || "boolean" == typeof input.js || _report(_exceptionable, {
31752
31766
  path: _path + ".js",
31753
- expected: "(\"always\" | boolean | undefined)",
31767
+ expected: "(boolean | undefined)",
31754
31768
  value: input.js
31755
31769
  }),
31756
31770
  void 0 === input.jsOptions || ("object" == typeof input.jsOptions && null !== input.jsOptions && false === Array.isArray(input.jsOptions) || _report(_exceptionable, {
@@ -31762,9 +31776,9 @@ export const __webpack_modules__ = {
31762
31776
  expected: "(SwcJsMinimizerRspackPluginOptions | undefined)",
31763
31777
  value: input.jsOptions
31764
31778
  }),
31765
- void 0 === input.css || "always" === input.css || "boolean" == typeof input.css || _report(_exceptionable, {
31779
+ void 0 === input.css || "boolean" == typeof input.css || _report(_exceptionable, {
31766
31780
  path: _path + ".css",
31767
- expected: "(\"always\" | boolean | undefined)",
31781
+ expected: "(boolean | undefined)",
31768
31782
  value: input.css
31769
31783
  }),
31770
31784
  void 0 === input.cssOptions || ("object" == typeof input.cssOptions && null !== input.cssOptions && false === Array.isArray(input.cssOptions) || _report(_exceptionable, {
@@ -32933,27 +32947,27 @@ export const __webpack_modules__ = {
32933
32947
  const _vo377 = (input, _path, _exceptionable = true)=>[
32934
32948
  (Array.isArray(input.patterns) || _report(_exceptionable, {
32935
32949
  path: _path + ".patterns",
32936
- expected: "Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)>",
32950
+ expected: "Array<string | ({ from: string; } & Partial<RawCopyPattern>)>",
32937
32951
  value: input.patterns
32938
32952
  })) && input.patterns.map((elem, _index663)=>(null !== elem || _report(_exceptionable, {
32939
32953
  path: _path + ".patterns[" + _index663 + "]",
32940
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
32954
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
32941
32955
  value: elem
32942
32956
  })) && (void 0 !== elem || _report(_exceptionable, {
32943
32957
  path: _path + ".patterns[" + _index663 + "]",
32944
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
32958
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
32945
32959
  value: elem
32946
32960
  })) && ("string" == typeof elem || ("object" == typeof elem && null !== elem || _report(_exceptionable, {
32947
32961
  path: _path + ".patterns[" + _index663 + "]",
32948
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
32962
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
32949
32963
  value: elem
32950
32964
  })) && _vo378(elem, _path + ".patterns[" + _index663 + "]", _exceptionable) || _report(_exceptionable, {
32951
32965
  path: _path + ".patterns[" + _index663 + "]",
32952
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
32966
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
32953
32967
  value: elem
32954
32968
  }))).every((flag)=>flag) || _report(_exceptionable, {
32955
32969
  path: _path + ".patterns",
32956
- expected: "Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)>",
32970
+ expected: "Array<string | ({ from: string; } & Partial<RawCopyPattern>)>",
32957
32971
  value: input.patterns
32958
32972
  }),
32959
32973
  1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
@@ -32975,20 +32989,6 @@ export const __webpack_modules__ = {
32975
32989
  expected: "string",
32976
32990
  value: input.from
32977
32991
  }),
32978
- void 0 === input.info || ("object" == typeof input.info && null !== input.info && false === Array.isArray(input.info) || _report(_exceptionable, {
32979
- path: _path + ".info",
32980
- expected: "(RawInfo | undefined)",
32981
- value: input.info
32982
- })) && _vo379(input.info, _path + ".info", _exceptionable) || _report(_exceptionable, {
32983
- path: _path + ".info",
32984
- expected: "(RawInfo | undefined)",
32985
- value: input.info
32986
- }),
32987
- void 0 === input.context || "string" == typeof input.context || _report(_exceptionable, {
32988
- path: _path + ".context",
32989
- expected: "(string | undefined)",
32990
- value: input.context
32991
- }),
32992
32992
  (null !== input.to || _report(_exceptionable, {
32993
32993
  path: _path + ".to",
32994
32994
  expected: "(string | undefined)",
@@ -32998,6 +32998,11 @@ export const __webpack_modules__ = {
32998
32998
  expected: "(string | undefined)",
32999
32999
  value: input.to
33000
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
+ }),
33001
33006
  void 0 === input.toType || "string" == typeof input.toType || _report(_exceptionable, {
33002
33007
  path: _path + ".toType",
33003
33008
  expected: "(string | undefined)",
@@ -33022,11 +33027,20 @@ export const __webpack_modules__ = {
33022
33027
  path: _path + ".globOptions",
33023
33028
  expected: "(RawCopyGlobOptions | undefined)",
33024
33029
  value: input.globOptions
33025
- })) && _vo381(input.globOptions, _path + ".globOptions", _exceptionable) || _report(_exceptionable, {
33030
+ })) && _vo379(input.globOptions, _path + ".globOptions", _exceptionable) || _report(_exceptionable, {
33026
33031
  path: _path + ".globOptions",
33027
33032
  expected: "(RawCopyGlobOptions | undefined)",
33028
33033
  value: input.globOptions
33029
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
+ }),
33030
33044
  void 0 === input.copyPermissions || "boolean" == typeof input.copyPermissions || _report(_exceptionable, {
33031
33045
  path: _path + ".copyPermissions",
33032
33046
  expected: "(boolean | undefined)",
@@ -33034,28 +33048,28 @@ export const __webpack_modules__ = {
33034
33048
  }),
33035
33049
  (null !== input.transform || _report(_exceptionable, {
33036
33050
  path: _path + ".transform",
33037
- expected: "(__type.o111 | undefined)",
33051
+ expected: "(__type.o112 | undefined)",
33038
33052
  value: input.transform
33039
33053
  })) && (void 0 === input.transform || "function" == typeof input.transform || ("object" == typeof input.transform && null !== input.transform || _report(_exceptionable, {
33040
33054
  path: _path + ".transform",
33041
- expected: "(__type.o111 | undefined)",
33055
+ expected: "(__type.o112 | undefined)",
33042
33056
  value: input.transform
33043
33057
  })) && _vo382(input.transform, _path + ".transform", _exceptionable) || _report(_exceptionable, {
33044
33058
  path: _path + ".transform",
33045
- expected: "(__type.o111 | undefined)",
33059
+ expected: "(__type.o112 | undefined)",
33046
33060
  value: input.transform
33047
33061
  })),
33048
33062
  1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
33049
33063
  if ([
33050
33064
  "from",
33051
- "info",
33052
- "context",
33053
33065
  "to",
33066
+ "context",
33054
33067
  "toType",
33055
33068
  "noErrorOnMissing",
33056
33069
  "force",
33057
33070
  "priority",
33058
33071
  "globOptions",
33072
+ "info",
33059
33073
  "copyPermissions",
33060
33074
  "transform"
33061
33075
  ].some((prop)=>key === prop)) return true;
@@ -33069,6 +33083,45 @@ export const __webpack_modules__ = {
33069
33083
  }).every((flag)=>flag)
33070
33084
  ].every((flag)=>flag);
33071
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)=>[
33072
33125
  void 0 === input.immutable || "boolean" == typeof input.immutable || _report(_exceptionable, {
33073
33126
  path: _path + ".immutable",
33074
33127
  expected: "(boolean | undefined)",
@@ -33083,8 +33136,8 @@ export const __webpack_modules__ = {
33083
33136
  path: _path + ".chunkHash",
33084
33137
  expected: "(Array<string> | undefined)",
33085
33138
  value: input.chunkHash
33086
- })) && input.chunkHash.map((elem, _index664)=>"string" == typeof elem || _report(_exceptionable, {
33087
- path: _path + ".chunkHash[" + _index664 + "]",
33139
+ })) && input.chunkHash.map((elem, _index665)=>"string" == typeof elem || _report(_exceptionable, {
33140
+ path: _path + ".chunkHash[" + _index665 + "]",
33088
33141
  expected: "string",
33089
33142
  value: elem
33090
33143
  })).every((flag)=>flag) || _report(_exceptionable, {
@@ -33096,8 +33149,8 @@ export const __webpack_modules__ = {
33096
33149
  path: _path + ".contentHash",
33097
33150
  expected: "(Array<string> | undefined)",
33098
33151
  value: input.contentHash
33099
- })) && input.contentHash.map((elem, _index665)=>"string" == typeof elem || _report(_exceptionable, {
33100
- path: _path + ".contentHash[" + _index665 + "]",
33152
+ })) && input.contentHash.map((elem, _index666)=>"string" == typeof elem || _report(_exceptionable, {
33153
+ path: _path + ".contentHash[" + _index666 + "]",
33101
33154
  expected: "string",
33102
33155
  value: elem
33103
33156
  })).every((flag)=>flag) || _report(_exceptionable, {
@@ -33119,7 +33172,7 @@ export const __webpack_modules__ = {
33119
33172
  path: _path + ".related",
33120
33173
  expected: "(RawRelated | undefined)",
33121
33174
  value: input.related
33122
- })) && _vo380(input.related, _path + ".related", _exceptionable) || _report(_exceptionable, {
33175
+ })) && _vo381(input.related, _path + ".related", _exceptionable) || _report(_exceptionable, {
33123
33176
  path: _path + ".related",
33124
33177
  expected: "(RawRelated | undefined)",
33125
33178
  value: input.related
@@ -33149,7 +33202,7 @@ export const __webpack_modules__ = {
33149
33202
  });
33150
33203
  }).every((flag)=>flag)
33151
33204
  ].every((flag)=>flag);
33152
- const _vo380 = (input, _path, _exceptionable = true)=>[
33205
+ const _vo381 = (input, _path, _exceptionable = true)=>[
33153
33206
  void 0 === input.sourceMap || "string" == typeof input.sourceMap || _report(_exceptionable, {
33154
33207
  path: _path + ".sourceMap",
33155
33208
  expected: "(string | undefined)",
@@ -33168,45 +33221,6 @@ export const __webpack_modules__ = {
33168
33221
  });
33169
33222
  }).every((flag)=>flag)
33170
33223
  ].every((flag)=>flag);
33171
- const _vo381 = (input, _path, _exceptionable = true)=>[
33172
- void 0 === input.caseSensitiveMatch || "boolean" == typeof input.caseSensitiveMatch || _report(_exceptionable, {
33173
- path: _path + ".caseSensitiveMatch",
33174
- expected: "(boolean | undefined)",
33175
- value: input.caseSensitiveMatch
33176
- }),
33177
- void 0 === input.dot || "boolean" == typeof input.dot || _report(_exceptionable, {
33178
- path: _path + ".dot",
33179
- expected: "(boolean | undefined)",
33180
- value: input.dot
33181
- }),
33182
- void 0 === input.ignore || (Array.isArray(input.ignore) || _report(_exceptionable, {
33183
- path: _path + ".ignore",
33184
- expected: "(Array<string> | undefined)",
33185
- value: input.ignore
33186
- })) && input.ignore.map((elem, _index666)=>"string" == typeof elem || _report(_exceptionable, {
33187
- path: _path + ".ignore[" + _index666 + "]",
33188
- expected: "string",
33189
- value: elem
33190
- })).every((flag)=>flag) || _report(_exceptionable, {
33191
- path: _path + ".ignore",
33192
- expected: "(Array<string> | undefined)",
33193
- value: input.ignore
33194
- }),
33195
- 0 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
33196
- if ([
33197
- "caseSensitiveMatch",
33198
- "dot",
33199
- "ignore"
33200
- ].some((prop)=>key === prop)) return true;
33201
- const value = input[key];
33202
- if (void 0 === value) return true;
33203
- return _report(_exceptionable, {
33204
- path: _path + typia_lib_internal_accessExpressionAsString_js__WEBPACK_IMPORTED_MODULE_0__._accessExpressionAsString(key),
33205
- expected: "undefined",
33206
- value: value
33207
- });
33208
- }).every((flag)=>flag)
33209
- ].every((flag)=>flag);
33210
33224
  const _vo382 = (input, _path, _exceptionable = true)=>[
33211
33225
  true,
33212
33226
  1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
@@ -34473,14 +34487,14 @@ export const __webpack_modules__ = {
34473
34487
  }).every((flag)=>flag)
34474
34488
  ].every((flag)=>flag);
34475
34489
  const _vo405 = (input, _path, _exceptionable = true)=>[
34476
- "string" == typeof input["__@toStringTag@6634"] || _report(_exceptionable, {
34477
- path: _path + "[\"__@toStringTag@6634\"]",
34490
+ "string" == typeof input["__@toStringTag@6636"] || _report(_exceptionable, {
34491
+ path: _path + "[\"__@toStringTag@6636\"]",
34478
34492
  expected: "string",
34479
- value: input["__@toStringTag@6634"]
34493
+ value: input["__@toStringTag@6636"]
34480
34494
  }),
34481
34495
  1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
34482
34496
  if ([
34483
- "__@toStringTag@6634"
34497
+ "__@toStringTag@6636"
34484
34498
  ].some((prop)=>key === prop)) return true;
34485
34499
  const value = input[key];
34486
34500
  if (void 0 === value) return true;
@@ -34504,31 +34518,31 @@ export const __webpack_modules__ = {
34504
34518
  }),
34505
34519
  (null !== input.copy || _report(_exceptionable, {
34506
34520
  path: _path + ".copy",
34507
- expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
34521
+ expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
34508
34522
  value: input.copy
34509
34523
  })) && (void 0 === input.copy || Array.isArray(input.copy) && input.copy.map((elem, _index692)=>(null !== elem || _report(_exceptionable, {
34510
34524
  path: _path + ".copy[" + _index692 + "]",
34511
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
34525
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
34512
34526
  value: elem
34513
34527
  })) && (void 0 !== elem || _report(_exceptionable, {
34514
34528
  path: _path + ".copy[" + _index692 + "]",
34515
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
34529
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
34516
34530
  value: elem
34517
34531
  })) && ("string" == typeof elem || ("object" == typeof elem && null !== elem || _report(_exceptionable, {
34518
34532
  path: _path + ".copy[" + _index692 + "]",
34519
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
34533
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
34520
34534
  value: elem
34521
34535
  })) && _vo378(elem, _path + ".copy[" + _index692 + "]", _exceptionable) || _report(_exceptionable, {
34522
34536
  path: _path + ".copy[" + _index692 + "]",
34523
- expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
34537
+ expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
34524
34538
  value: elem
34525
34539
  }))).every((flag)=>flag) || "object" == typeof input.copy && null !== input.copy && _vo377(input.copy, _path + ".copy", _exceptionable) || _report(_exceptionable, {
34526
34540
  path: _path + ".copy",
34527
- expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
34541
+ expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
34528
34542
  value: input.copy
34529
34543
  }) || _report(_exceptionable, {
34530
34544
  path: _path + ".copy",
34531
- expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
34545
+ expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
34532
34546
  value: input.copy
34533
34547
  })),
34534
34548
  void 0 === input.cssModules || ("object" == typeof input.cssModules && null !== input.cssModules && false === Array.isArray(input.cssModules) || _report(_exceptionable, {
@@ -35823,11 +35837,11 @@ export const __webpack_modules__ = {
35823
35837
  }),
35824
35838
  void 0 === input.loaderInterceptorOptions || ("object" == typeof input.loaderInterceptorOptions && null !== input.loaderInterceptorOptions && false === Array.isArray(input.loaderInterceptorOptions) || _report(_exceptionable, {
35825
35839
  path: _path + ".loaderInterceptorOptions",
35826
- expected: "(__type.o116 | undefined)",
35840
+ expected: "(__type.o117 | undefined)",
35827
35841
  value: input.loaderInterceptorOptions
35828
35842
  })) && _vo441(input.loaderInterceptorOptions, _path + ".loaderInterceptorOptions", _exceptionable) || _report(_exceptionable, {
35829
35843
  path: _path + ".loaderInterceptorOptions",
35830
- expected: "(__type.o116 | undefined)",
35844
+ expected: "(__type.o117 | undefined)",
35831
35845
  value: input.loaderInterceptorOptions
35832
35846
  }),
35833
35847
  void 0 === input.disableClientServer || "boolean" == typeof input.disableClientServer || _report(_exceptionable, {
@@ -35883,11 +35897,11 @@ export const __webpack_modules__ = {
35883
35897
  }),
35884
35898
  void 0 === input.output || ("object" == typeof input.output && null !== input.output && false === Array.isArray(input.output) || _report(_exceptionable, {
35885
35899
  path: _path + ".output",
35886
- expected: "(__type.o117 | undefined)",
35900
+ expected: "(__type.o118 | undefined)",
35887
35901
  value: input.output
35888
35902
  })) && _vo455(input.output, _path + ".output", _exceptionable) || _report(_exceptionable, {
35889
35903
  path: _path + ".output",
35890
- expected: "(__type.o117 | undefined)",
35904
+ expected: "(__type.o118 | undefined)",
35891
35905
  value: input.output
35892
35906
  }),
35893
35907
  0 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
@@ -37185,7 +37199,7 @@ export const __webpack_modules__ = {
37185
37199
  });
37186
37200
  })();
37187
37201
  const _vu3 = (input, _path, _exceptionable = true)=>(()=>{
37188
- if (void 0 !== input["__@toStringTag@6634"]) return _vo155(input, _path, _exceptionable);
37202
+ if (void 0 !== input["__@toStringTag@6636"]) return _vo155(input, _path, _exceptionable);
37189
37203
  if (void 0 !== input.pem) return _vo156(input, _path, _exceptionable);
37190
37204
  return _report(_exceptionable, {
37191
37205
  path: _path,
@@ -37194,7 +37208,7 @@ export const __webpack_modules__ = {
37194
37208
  });
37195
37209
  })();
37196
37210
  const _vu4 = (input, _path, _exceptionable = true)=>(()=>{
37197
- if (void 0 !== input["__@toStringTag@6634"]) return _vo155(input, _path, _exceptionable);
37211
+ if (void 0 !== input["__@toStringTag@6636"]) return _vo155(input, _path, _exceptionable);
37198
37212
  if (void 0 !== input.buf) return _vo157(input, _path, _exceptionable);
37199
37213
  return _report(_exceptionable, {
37200
37214
  path: _path,
@@ -37204,7 +37218,7 @@ export const __webpack_modules__ = {
37204
37218
  })();
37205
37219
  const _vu5 = (input, _path, _exceptionable = true)=>(()=>{
37206
37220
  if (void 0 !== input.name) return _vo404(input, _path, _exceptionable);
37207
- if (void 0 !== input["__@toStringTag@6634"]) return _vo405(input, _path, _exceptionable);
37221
+ if (void 0 !== input["__@toStringTag@6636"]) return _vo405(input, _path, _exceptionable);
37208
37222
  return _report(_exceptionable, {
37209
37223
  path: _path,
37210
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').iife(false).end();
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-20250528-bf12d573",
3
+ "version": "0.9.8-canary-20250530-5f0ce5c3",
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.22",
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
  },