@lynx-js/rspeedy-canary 0.9.7 → 0.9.8-canary-20250528-633a10e2

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,5 +1,11 @@
1
1
  # @lynx-js/rspeedy
2
2
 
3
+ ## 0.9.8-canary-20250528051841-633a10e2ad6fca7eb0f73875b696685daf45d744
4
+
5
+ ### Patch Changes
6
+
7
+ - Bump Rsbuild v1.3.22 with Rspack v1.3.12. ([#939](https://github.com/lynx-family/lynx-stack/pull/939))
8
+
3
9
  ## 0.9.7
4
10
 
5
11
  ### Patch Changes
@@ -20,13 +26,13 @@
20
26
  example:
21
27
 
22
28
  ```js
23
- import { defineConfig } from '@lynx-js/rspeedy'
29
+ import { defineConfig } from "@lynx-js/rspeedy";
24
30
 
25
31
  export default defineConfig({
26
32
  output: {
27
33
  inlineScripts: false,
28
34
  },
29
- })
35
+ });
30
36
  ```
31
37
 
32
38
  - Bump Rsbuild v1.3.21 with Rspack v1.3.11. ([#863](https://github.com/lynx-family/lynx-stack/pull/863))
@@ -46,12 +52,12 @@
46
52
  example:
47
53
 
48
54
  ```js
49
- import { defineConfig } from '@lynx-js/rspeedy'
55
+ import { defineConfig } from "@lynx-js/rspeedy";
50
56
  export default defineConfig({
51
57
  source: {
52
- preEntry: './src/polyfill.ts',
58
+ preEntry: "./src/polyfill.ts",
53
59
  },
54
- })
60
+ });
55
61
  ```
56
62
 
57
63
  - Bump Rsbuild v1.3.20 with Rspack v1.3.10. ([#799](https://github.com/lynx-family/lynx-stack/pull/799))
@@ -62,17 +68,17 @@
62
68
 
63
69
  ```js
64
70
  export const myPlugin = {
65
- name: 'my-plugin',
71
+ name: "my-plugin",
66
72
  setup(api) {
67
- const { callerName } = api.context
73
+ const { callerName } = api.context;
68
74
 
69
- if (callerName === 'rslib') {
75
+ if (callerName === "rslib") {
70
76
  // ...
71
- } else if (callerName === 'rspeedy') {
77
+ } else if (callerName === "rspeedy") {
72
78
  // ...
73
79
  }
74
80
  },
75
- }
81
+ };
76
82
  ```
77
83
 
78
84
  - Support `performance.buildCache`. ([#766](https://github.com/lynx-family/lynx-stack/pull/766))
@@ -95,7 +101,7 @@
95
101
  Set `tools.rsdoctor.experiments.enableNativePlugin` to `false` to use the old JS plugin.
96
102
 
97
103
  ```js
98
- import { defineConfig } from '@lynx-js/rspeedy'
104
+ import { defineConfig } from "@lynx-js/rspeedy";
99
105
 
100
106
  export default defineConfig({
101
107
  tools: {
@@ -105,7 +111,7 @@
105
111
  },
106
112
  },
107
113
  },
108
- })
114
+ });
109
115
  ```
110
116
 
111
117
  See [Rsdoctor - 1.0](https://rsdoctor.dev/blog/release/release-note-1_0#-faster-analysis) for more details.
@@ -237,12 +243,12 @@
237
243
  example:
238
244
 
239
245
  ```js
240
- import { defineConfig } from '@lynx-js/rspeedy'
246
+ import { defineConfig } from "@lynx-js/rspeedy";
241
247
  export default defineConfig({
242
248
  server: {
243
- base: '/dist',
249
+ base: "/dist",
244
250
  },
245
- })
251
+ });
246
252
  ```
247
253
 
248
254
  - Updated dependencies [[`b026c8b`](https://github.com/lynx-family/lynx-stack/commit/b026c8bdcbf7bdcda73e170477297213b447d876)]:
@@ -295,11 +301,11 @@
295
301
  You can switch to other tools by using:
296
302
 
297
303
  ```js
298
- import { defineConfig } from '@lynx-js/rspeedy'
304
+ import { defineConfig } from "@lynx-js/rspeedy";
299
305
  import {
300
306
  CssMinimizerWebpackPlugin,
301
307
  pluginCssMinimizer,
302
- } from '@rsbuild/plugin-css-minimizer'
308
+ } from "@rsbuild/plugin-css-minimizer";
303
309
 
304
310
  export default defineConfig({
305
311
  plugins: [
@@ -312,7 +318,7 @@
312
318
  },
313
319
  }),
314
320
  ],
315
- })
321
+ });
316
322
  ```
317
323
 
318
324
  See [@rsbuild/plugin-css-minimizer](https://github.com/rspack-contrib/rsbuild-plugin-css-minimizer) for details.
@@ -322,8 +328,8 @@
322
328
  You can use custom options with [@rsbuild/plugin-css-minimizer](https://github.com/rspack-contrib/rsbuild-plugin-css-minimizer):
323
329
 
324
330
  ```js
325
- import { defineConfig } from '@lynx-js/rspeedy'
326
- import { pluginCssMinimizer } from '@rsbuild/plugin-css-minimizer'
331
+ import { defineConfig } from "@lynx-js/rspeedy";
332
+ import { pluginCssMinimizer } from "@rsbuild/plugin-css-minimizer";
327
333
 
328
334
  export default defineConfig({
329
335
  plugins: [
@@ -335,7 +341,7 @@
335
341
  },
336
342
  }),
337
343
  ],
338
- })
344
+ });
339
345
  ```
340
346
 
341
347
  ## 0.7.1
@@ -355,7 +361,7 @@
355
361
  You may turn it off using `output.minify.css: false`:
356
362
 
357
363
  ```js
358
- import { defineConfig } from '@lynx-js/rspeedy'
364
+ import { defineConfig } from "@lynx-js/rspeedy";
359
365
 
360
366
  export default defineConfig({
361
367
  output: {
@@ -363,18 +369,18 @@
363
369
  css: false,
364
370
  },
365
371
  },
366
- })
372
+ });
367
373
  ```
368
374
 
369
375
  Or you may use [@rsbuild/plugin-css-minimizer](https://github.com/rspack-contrib/rsbuild-plugin-css-minimizer) to use `cssnano` as CSS minimizer.
370
376
 
371
377
  ```js
372
- import { defineConfig } from '@lynx-js/rspeedy'
373
- import { pluginCssMinimizer } from '@rsbuild/plugin-css-minimizer'
378
+ import { defineConfig } from "@lynx-js/rspeedy";
379
+ import { pluginCssMinimizer } from "@rsbuild/plugin-css-minimizer";
374
380
 
375
381
  export default defineConfig({
376
382
  plugins: [pluginCssMinimizer()],
377
- })
383
+ });
378
384
  ```
379
385
 
380
386
  - 525554c: **BREAKING CHANGE**: Bump ts-blank-space to ^0.6.0.
@@ -401,22 +407,22 @@
401
407
  - The new `type: 'reload-server'` will restart the development server when it detects changes in the specified files.
402
408
 
403
409
  ```js
404
- import { defineConfig } from '@lynx-js/rspeedy'
410
+ import { defineConfig } from "@lynx-js/rspeedy";
405
411
 
406
412
  export default defineConfig({
407
413
  dev: {
408
414
  watchFiles: [
409
415
  {
410
- type: 'reload-server',
411
- paths: ['public/**/*.txt'],
416
+ type: "reload-server",
417
+ paths: ["public/**/*.txt"],
412
418
  },
413
419
  {
414
- type: 'reload-page',
415
- paths: ['public/**/*.json'],
420
+ type: "reload-page",
421
+ paths: ["public/**/*.json"],
416
422
  },
417
423
  ],
418
424
  },
419
- })
425
+ });
420
426
  ```
421
427
 
422
428
  - be9b003: Add `source.exclude`.
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_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__);
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__);
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_1___default().bgCyan('lynx');
209
+ const label = picocolors__WEBPACK_IMPORTED_MODULE_0___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_0__.logger.level = 'verbose';
214
- _rsbuild_core__WEBPACK_IMPORTED_MODULE_0__.logger.debug(`${label} ${result}`);
213
+ _rsbuild_core__WEBPACK_IMPORTED_MODULE_1__.logger.level = 'verbose';
214
+ _rsbuild_core__WEBPACK_IMPORTED_MODULE_1__.logger.debug(`${label} ${result}`);
215
215
  }
216
216
  };
217
217
  const debugList = (prefix, messages)=>debug(()=>`${prefix} ${[
@@ -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__.init)(cwd, buildOptions);
18
+ const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_3__.S)(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
- init: ()=>init
30
+ S: ()=>init
31
31
  });
32
32
  var external_node_fs_ = __webpack_require__("node:fs");
33
33
  var external_node_path_ = __webpack_require__("node:path");
@@ -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__.init)(cwd, devOptions);
20
+ const { rspeedyConfig, configPath, createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_4__.S)(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
- init: ()=>init
73
+ S: ()=>init
74
74
  });
75
75
  var external_node_fs_ = __webpack_require__("node:fs");
76
76
  var external_node_path_ = __webpack_require__("node:path");
@@ -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
- init: ()=>init
7
+ S: ()=>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__.init)(cwd, inspectOptions);
125
+ const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_3__.S)(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',
@@ -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
- init: ()=>init
7
+ S: ()=>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__.init)(cwd, previewOptions);
128
+ const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_4__.S)(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;
@@ -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@6635"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
1417
+ const _io50 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@6634"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
1418
1418
  if ([
1419
- "__@toStringTag@6635"
1419
+ "__@toStringTag@6634"
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@6635"] && 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@6634"] && 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@6635"
2987
+ "__@toStringTag@6634"
2988
2988
  ].some((prop)=>key === prop)) return true;
2989
2989
  const value = input[key];
2990
2990
  if (void 0 === value) return true;
@@ -5601,7 +5601,7 @@ export const __webpack_modules__ = {
5601
5601
  if (void 0 === value) return true;
5602
5602
  return false;
5603
5603
  }));
5604
- 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)=>{
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)=>{
5605
5605
  if ([
5606
5606
  "js",
5607
5607
  "jsOptions",
@@ -5832,17 +5832,17 @@ export const __webpack_modules__ = {
5832
5832
  if (void 0 === value) return true;
5833
5833
  return false;
5834
5834
  }));
5835
- 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)=>{
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)=>{
5836
5836
  if ([
5837
5837
  "from",
5838
- "to",
5838
+ "info",
5839
5839
  "context",
5840
+ "to",
5840
5841
  "toType",
5841
5842
  "noErrorOnMissing",
5842
5843
  "force",
5843
5844
  "priority",
5844
5845
  "globOptions",
5845
- "info",
5846
5846
  "copyPermissions",
5847
5847
  "transform"
5848
5848
  ].some((prop)=>key === prop)) return true;
@@ -5850,17 +5850,7 @@ export const __webpack_modules__ = {
5850
5850
  if (void 0 === value) return true;
5851
5851
  return false;
5852
5852
  }));
5853
- 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)=>{
5854
- if ([
5855
- "caseSensitiveMatch",
5856
- "dot",
5857
- "ignore"
5858
- ].some((prop)=>key === prop)) return true;
5859
- const value = input[key];
5860
- if (void 0 === value) return true;
5861
- return false;
5862
- }));
5863
- 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)=>{
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)=>{
5864
5854
  if ([
5865
5855
  "immutable",
5866
5856
  "minimized",
@@ -5875,7 +5865,7 @@ export const __webpack_modules__ = {
5875
5865
  if (void 0 === value) return true;
5876
5866
  return false;
5877
5867
  }));
5878
- const _io381 = (input, _exceptionable = true)=>(void 0 === input.sourceMap || "string" == typeof input.sourceMap) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
5868
+ const _io380 = (input, _exceptionable = true)=>(void 0 === input.sourceMap || "string" == typeof input.sourceMap) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
5879
5869
  if ([
5880
5870
  "sourceMap"
5881
5871
  ].some((prop)=>key === prop)) return true;
@@ -5883,6 +5873,16 @@ export const __webpack_modules__ = {
5883
5873
  if (void 0 === value) return true;
5884
5874
  return false;
5885
5875
  }));
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
5886
  const _io382 = (input, _exceptionable = true)=>1 === Object.keys(input).length || Object.keys(input).every((key)=>{
5887
5887
  if ([
5888
5888
  "transformer"
@@ -6125,9 +6125,9 @@ export const __webpack_modules__ = {
6125
6125
  if (void 0 === value) return true;
6126
6126
  return false;
6127
6127
  }));
6128
- const _io405 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@6635"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
6128
+ const _io405 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@6634"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
6129
6129
  if ([
6130
- "__@toStringTag@6635"
6130
+ "__@toStringTag@6634"
6131
6131
  ].some((prop)=>key === prop)) return true;
6132
6132
  const value = input[key];
6133
6133
  if (void 0 === value) return true;
@@ -6719,18 +6719,18 @@ export const __webpack_modules__ = {
6719
6719
  return false;
6720
6720
  })();
6721
6721
  const _iu3 = (input, _exceptionable = true)=>(()=>{
6722
- if (void 0 !== input["__@toStringTag@6635"]) return _io155(input, _exceptionable);
6722
+ if (void 0 !== input["__@toStringTag@6634"]) return _io155(input, _exceptionable);
6723
6723
  if (void 0 !== input.pem) return _io156(input, _exceptionable);
6724
6724
  return false;
6725
6725
  })();
6726
6726
  const _iu4 = (input, _exceptionable = true)=>(()=>{
6727
- if (void 0 !== input["__@toStringTag@6635"]) return _io155(input, _exceptionable);
6727
+ if (void 0 !== input["__@toStringTag@6634"]) return _io155(input, _exceptionable);
6728
6728
  if (void 0 !== input.buf) return _io157(input, _exceptionable);
6729
6729
  return false;
6730
6730
  })();
6731
6731
  const _iu5 = (input, _exceptionable = true)=>(()=>{
6732
6732
  if (void 0 !== input.name) return _io404(input, _exceptionable);
6733
- if (void 0 !== input["__@toStringTag@6635"]) return _io405(input, _exceptionable);
6733
+ if (void 0 !== input["__@toStringTag@6634"]) return _io405(input, _exceptionable);
6734
6734
  return false;
6735
6735
  })();
6736
6736
  const _iu6 = (input, _exceptionable = true)=>(()=>{
@@ -9474,14 +9474,14 @@ export const __webpack_modules__ = {
9474
9474
  }).every((flag)=>flag)
9475
9475
  ].every((flag)=>flag);
9476
9476
  const _vo50 = (input, _path, _exceptionable = true)=>[
9477
- "string" == typeof input["__@toStringTag@6635"] || _report(_exceptionable, {
9478
- path: _path + "[\"__@toStringTag@6635\"]",
9477
+ "string" == typeof input["__@toStringTag@6634"] || _report(_exceptionable, {
9478
+ path: _path + "[\"__@toStringTag@6634\"]",
9479
9479
  expected: "string",
9480
- value: input["__@toStringTag@6635"]
9480
+ value: input["__@toStringTag@6634"]
9481
9481
  }),
9482
9482
  1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
9483
9483
  if ([
9484
- "__@toStringTag@6635"
9484
+ "__@toStringTag@6634"
9485
9485
  ].some((prop)=>key === prop)) return true;
9486
9486
  const value = input[key];
9487
9487
  if (void 0 === value) return true;
@@ -17840,10 +17840,10 @@ export const __webpack_modules__ = {
17840
17840
  expected: "number",
17841
17841
  value: input.length
17842
17842
  }),
17843
- "Uint8Array" === input["__@toStringTag@6635"] || _report(_exceptionable, {
17844
- path: _path + "[\"__@toStringTag@6635\"]",
17843
+ "Uint8Array" === input["__@toStringTag@6634"] || _report(_exceptionable, {
17844
+ path: _path + "[\"__@toStringTag@6634\"]",
17845
17845
  expected: "\"Uint8Array\"",
17846
- value: input["__@toStringTag@6635"]
17846
+ value: input["__@toStringTag@6634"]
17847
17847
  }),
17848
17848
  false === _exceptionable || Object.keys(input).map((key)=>{
17849
17849
  if ([
@@ -17852,7 +17852,7 @@ export const __webpack_modules__ = {
17852
17852
  "byteLength",
17853
17853
  "byteOffset",
17854
17854
  "length",
17855
- "__@toStringTag@6635"
17855
+ "__@toStringTag@6634"
17856
17856
  ].some((prop)=>key === prop)) return true;
17857
17857
  const value = input[key];
17858
17858
  if (void 0 === value) return true;
@@ -31369,31 +31369,31 @@ export const __webpack_modules__ = {
31369
31369
  }),
31370
31370
  (null !== input.copy || _report(_exceptionable, {
31371
31371
  path: _path + ".copy",
31372
- expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
31372
+ expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
31373
31373
  value: input.copy
31374
31374
  })) && (void 0 === input.copy || Array.isArray(input.copy) && input.copy.map((elem, _index650)=>(null !== elem || _report(_exceptionable, {
31375
31375
  path: _path + ".copy[" + _index650 + "]",
31376
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
31376
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
31377
31377
  value: elem
31378
31378
  })) && (void 0 !== elem || _report(_exceptionable, {
31379
31379
  path: _path + ".copy[" + _index650 + "]",
31380
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
31380
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
31381
31381
  value: elem
31382
31382
  })) && ("string" == typeof elem || ("object" == typeof elem && null !== elem || _report(_exceptionable, {
31383
31383
  path: _path + ".copy[" + _index650 + "]",
31384
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
31384
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
31385
31385
  value: elem
31386
31386
  })) && _vo378(elem, _path + ".copy[" + _index650 + "]", _exceptionable) || _report(_exceptionable, {
31387
31387
  path: _path + ".copy[" + _index650 + "]",
31388
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
31388
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
31389
31389
  value: elem
31390
31390
  }))).every((flag)=>flag) || "object" == typeof input.copy && null !== input.copy && _vo377(input.copy, _path + ".copy", _exceptionable) || _report(_exceptionable, {
31391
31391
  path: _path + ".copy",
31392
- expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
31392
+ expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
31393
31393
  value: input.copy
31394
31394
  }) || _report(_exceptionable, {
31395
31395
  path: _path + ".copy",
31396
- expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
31396
+ expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
31397
31397
  value: input.copy
31398
31398
  })),
31399
31399
  void 0 === input.emitAssets || "boolean" == typeof input.emitAssets || _report(_exceptionable, {
@@ -31748,9 +31748,9 @@ export const __webpack_modules__ = {
31748
31748
  }).every((flag)=>flag)
31749
31749
  ].every((flag)=>flag);
31750
31750
  const _vo364 = (input, _path, _exceptionable = true)=>[
31751
- void 0 === input.js || "boolean" == typeof input.js || _report(_exceptionable, {
31751
+ void 0 === input.js || "always" === input.js || "boolean" == typeof input.js || _report(_exceptionable, {
31752
31752
  path: _path + ".js",
31753
- expected: "(boolean | undefined)",
31753
+ expected: "(\"always\" | boolean | undefined)",
31754
31754
  value: input.js
31755
31755
  }),
31756
31756
  void 0 === input.jsOptions || ("object" == typeof input.jsOptions && null !== input.jsOptions && false === Array.isArray(input.jsOptions) || _report(_exceptionable, {
@@ -31762,9 +31762,9 @@ export const __webpack_modules__ = {
31762
31762
  expected: "(SwcJsMinimizerRspackPluginOptions | undefined)",
31763
31763
  value: input.jsOptions
31764
31764
  }),
31765
- void 0 === input.css || "boolean" == typeof input.css || _report(_exceptionable, {
31765
+ void 0 === input.css || "always" === input.css || "boolean" == typeof input.css || _report(_exceptionable, {
31766
31766
  path: _path + ".css",
31767
- expected: "(boolean | undefined)",
31767
+ expected: "(\"always\" | boolean | undefined)",
31768
31768
  value: input.css
31769
31769
  }),
31770
31770
  void 0 === input.cssOptions || ("object" == typeof input.cssOptions && null !== input.cssOptions && false === Array.isArray(input.cssOptions) || _report(_exceptionable, {
@@ -32933,27 +32933,27 @@ export const __webpack_modules__ = {
32933
32933
  const _vo377 = (input, _path, _exceptionable = true)=>[
32934
32934
  (Array.isArray(input.patterns) || _report(_exceptionable, {
32935
32935
  path: _path + ".patterns",
32936
- expected: "Array<string | ({ from: string; } & Partial<RawCopyPattern>)>",
32936
+ expected: "Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)>",
32937
32937
  value: input.patterns
32938
32938
  })) && input.patterns.map((elem, _index663)=>(null !== elem || _report(_exceptionable, {
32939
32939
  path: _path + ".patterns[" + _index663 + "]",
32940
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
32940
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
32941
32941
  value: elem
32942
32942
  })) && (void 0 !== elem || _report(_exceptionable, {
32943
32943
  path: _path + ".patterns[" + _index663 + "]",
32944
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
32944
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
32945
32945
  value: elem
32946
32946
  })) && ("string" == typeof elem || ("object" == typeof elem && null !== elem || _report(_exceptionable, {
32947
32947
  path: _path + ".patterns[" + _index663 + "]",
32948
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
32948
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
32949
32949
  value: elem
32950
32950
  })) && _vo378(elem, _path + ".patterns[" + _index663 + "]", _exceptionable) || _report(_exceptionable, {
32951
32951
  path: _path + ".patterns[" + _index663 + "]",
32952
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
32952
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
32953
32953
  value: elem
32954
32954
  }))).every((flag)=>flag) || _report(_exceptionable, {
32955
32955
  path: _path + ".patterns",
32956
- expected: "Array<string | ({ from: string; } & Partial<RawCopyPattern>)>",
32956
+ expected: "Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)>",
32957
32957
  value: input.patterns
32958
32958
  }),
32959
32959
  1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
@@ -32975,6 +32975,20 @@ export const __webpack_modules__ = {
32975
32975
  expected: "string",
32976
32976
  value: input.from
32977
32977
  }),
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
+ }),
32978
32992
  (null !== input.to || _report(_exceptionable, {
32979
32993
  path: _path + ".to",
32980
32994
  expected: "(string | undefined)",
@@ -32984,11 +32998,6 @@ export const __webpack_modules__ = {
32984
32998
  expected: "(string | undefined)",
32985
32999
  value: input.to
32986
33000
  })),
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
33001
  void 0 === input.toType || "string" == typeof input.toType || _report(_exceptionable, {
32993
33002
  path: _path + ".toType",
32994
33003
  expected: "(string | undefined)",
@@ -33013,20 +33022,11 @@ export const __webpack_modules__ = {
33013
33022
  path: _path + ".globOptions",
33014
33023
  expected: "(RawCopyGlobOptions | undefined)",
33015
33024
  value: input.globOptions
33016
- })) && _vo379(input.globOptions, _path + ".globOptions", _exceptionable) || _report(_exceptionable, {
33025
+ })) && _vo381(input.globOptions, _path + ".globOptions", _exceptionable) || _report(_exceptionable, {
33017
33026
  path: _path + ".globOptions",
33018
33027
  expected: "(RawCopyGlobOptions | undefined)",
33019
33028
  value: input.globOptions
33020
33029
  }),
33021
- void 0 === input.info || ("object" == typeof input.info && null !== input.info && false === Array.isArray(input.info) || _report(_exceptionable, {
33022
- path: _path + ".info",
33023
- expected: "(RawInfo | undefined)",
33024
- value: input.info
33025
- })) && _vo380(input.info, _path + ".info", _exceptionable) || _report(_exceptionable, {
33026
- path: _path + ".info",
33027
- expected: "(RawInfo | undefined)",
33028
- value: input.info
33029
- }),
33030
33030
  void 0 === input.copyPermissions || "boolean" == typeof input.copyPermissions || _report(_exceptionable, {
33031
33031
  path: _path + ".copyPermissions",
33032
33032
  expected: "(boolean | undefined)",
@@ -33034,28 +33034,28 @@ export const __webpack_modules__ = {
33034
33034
  }),
33035
33035
  (null !== input.transform || _report(_exceptionable, {
33036
33036
  path: _path + ".transform",
33037
- expected: "(__type.o112 | undefined)",
33037
+ expected: "(__type.o111 | undefined)",
33038
33038
  value: input.transform
33039
33039
  })) && (void 0 === input.transform || "function" == typeof input.transform || ("object" == typeof input.transform && null !== input.transform || _report(_exceptionable, {
33040
33040
  path: _path + ".transform",
33041
- expected: "(__type.o112 | undefined)",
33041
+ expected: "(__type.o111 | undefined)",
33042
33042
  value: input.transform
33043
33043
  })) && _vo382(input.transform, _path + ".transform", _exceptionable) || _report(_exceptionable, {
33044
33044
  path: _path + ".transform",
33045
- expected: "(__type.o112 | undefined)",
33045
+ expected: "(__type.o111 | undefined)",
33046
33046
  value: input.transform
33047
33047
  })),
33048
33048
  1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
33049
33049
  if ([
33050
33050
  "from",
33051
- "to",
33051
+ "info",
33052
33052
  "context",
33053
+ "to",
33053
33054
  "toType",
33054
33055
  "noErrorOnMissing",
33055
33056
  "force",
33056
33057
  "priority",
33057
33058
  "globOptions",
33058
- "info",
33059
33059
  "copyPermissions",
33060
33060
  "transform"
33061
33061
  ].some((prop)=>key === prop)) return true;
@@ -33069,45 +33069,6 @@ export const __webpack_modules__ = {
33069
33069
  }).every((flag)=>flag)
33070
33070
  ].every((flag)=>flag);
33071
33071
  const _vo379 = (input, _path, _exceptionable = true)=>[
33072
- void 0 === input.caseSensitiveMatch || "boolean" == typeof input.caseSensitiveMatch || _report(_exceptionable, {
33073
- path: _path + ".caseSensitiveMatch",
33074
- expected: "(boolean | undefined)",
33075
- value: input.caseSensitiveMatch
33076
- }),
33077
- void 0 === input.dot || "boolean" == typeof input.dot || _report(_exceptionable, {
33078
- path: _path + ".dot",
33079
- expected: "(boolean | undefined)",
33080
- value: input.dot
33081
- }),
33082
- void 0 === input.ignore || (Array.isArray(input.ignore) || _report(_exceptionable, {
33083
- path: _path + ".ignore",
33084
- expected: "(Array<string> | undefined)",
33085
- value: input.ignore
33086
- })) && input.ignore.map((elem, _index664)=>"string" == typeof elem || _report(_exceptionable, {
33087
- path: _path + ".ignore[" + _index664 + "]",
33088
- expected: "string",
33089
- value: elem
33090
- })).every((flag)=>flag) || _report(_exceptionable, {
33091
- path: _path + ".ignore",
33092
- expected: "(Array<string> | undefined)",
33093
- value: input.ignore
33094
- }),
33095
- 0 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
33096
- if ([
33097
- "caseSensitiveMatch",
33098
- "dot",
33099
- "ignore"
33100
- ].some((prop)=>key === prop)) return true;
33101
- const value = input[key];
33102
- if (void 0 === value) return true;
33103
- return _report(_exceptionable, {
33104
- path: _path + typia_lib_internal_accessExpressionAsString_js__WEBPACK_IMPORTED_MODULE_0__._accessExpressionAsString(key),
33105
- expected: "undefined",
33106
- value: value
33107
- });
33108
- }).every((flag)=>flag)
33109
- ].every((flag)=>flag);
33110
- const _vo380 = (input, _path, _exceptionable = true)=>[
33111
33072
  void 0 === input.immutable || "boolean" == typeof input.immutable || _report(_exceptionable, {
33112
33073
  path: _path + ".immutable",
33113
33074
  expected: "(boolean | undefined)",
@@ -33122,8 +33083,8 @@ export const __webpack_modules__ = {
33122
33083
  path: _path + ".chunkHash",
33123
33084
  expected: "(Array<string> | undefined)",
33124
33085
  value: input.chunkHash
33125
- })) && input.chunkHash.map((elem, _index665)=>"string" == typeof elem || _report(_exceptionable, {
33126
- path: _path + ".chunkHash[" + _index665 + "]",
33086
+ })) && input.chunkHash.map((elem, _index664)=>"string" == typeof elem || _report(_exceptionable, {
33087
+ path: _path + ".chunkHash[" + _index664 + "]",
33127
33088
  expected: "string",
33128
33089
  value: elem
33129
33090
  })).every((flag)=>flag) || _report(_exceptionable, {
@@ -33135,8 +33096,8 @@ export const __webpack_modules__ = {
33135
33096
  path: _path + ".contentHash",
33136
33097
  expected: "(Array<string> | undefined)",
33137
33098
  value: input.contentHash
33138
- })) && input.contentHash.map((elem, _index666)=>"string" == typeof elem || _report(_exceptionable, {
33139
- path: _path + ".contentHash[" + _index666 + "]",
33099
+ })) && input.contentHash.map((elem, _index665)=>"string" == typeof elem || _report(_exceptionable, {
33100
+ path: _path + ".contentHash[" + _index665 + "]",
33140
33101
  expected: "string",
33141
33102
  value: elem
33142
33103
  })).every((flag)=>flag) || _report(_exceptionable, {
@@ -33158,7 +33119,7 @@ export const __webpack_modules__ = {
33158
33119
  path: _path + ".related",
33159
33120
  expected: "(RawRelated | undefined)",
33160
33121
  value: input.related
33161
- })) && _vo381(input.related, _path + ".related", _exceptionable) || _report(_exceptionable, {
33122
+ })) && _vo380(input.related, _path + ".related", _exceptionable) || _report(_exceptionable, {
33162
33123
  path: _path + ".related",
33163
33124
  expected: "(RawRelated | undefined)",
33164
33125
  value: input.related
@@ -33188,7 +33149,7 @@ export const __webpack_modules__ = {
33188
33149
  });
33189
33150
  }).every((flag)=>flag)
33190
33151
  ].every((flag)=>flag);
33191
- const _vo381 = (input, _path, _exceptionable = true)=>[
33152
+ const _vo380 = (input, _path, _exceptionable = true)=>[
33192
33153
  void 0 === input.sourceMap || "string" == typeof input.sourceMap || _report(_exceptionable, {
33193
33154
  path: _path + ".sourceMap",
33194
33155
  expected: "(string | undefined)",
@@ -33207,6 +33168,45 @@ export const __webpack_modules__ = {
33207
33168
  });
33208
33169
  }).every((flag)=>flag)
33209
33170
  ].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
33210
  const _vo382 = (input, _path, _exceptionable = true)=>[
33211
33211
  true,
33212
33212
  1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
@@ -34473,14 +34473,14 @@ export const __webpack_modules__ = {
34473
34473
  }).every((flag)=>flag)
34474
34474
  ].every((flag)=>flag);
34475
34475
  const _vo405 = (input, _path, _exceptionable = true)=>[
34476
- "string" == typeof input["__@toStringTag@6635"] || _report(_exceptionable, {
34477
- path: _path + "[\"__@toStringTag@6635\"]",
34476
+ "string" == typeof input["__@toStringTag@6634"] || _report(_exceptionable, {
34477
+ path: _path + "[\"__@toStringTag@6634\"]",
34478
34478
  expected: "string",
34479
- value: input["__@toStringTag@6635"]
34479
+ value: input["__@toStringTag@6634"]
34480
34480
  }),
34481
34481
  1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
34482
34482
  if ([
34483
- "__@toStringTag@6635"
34483
+ "__@toStringTag@6634"
34484
34484
  ].some((prop)=>key === prop)) return true;
34485
34485
  const value = input[key];
34486
34486
  if (void 0 === value) return true;
@@ -34504,31 +34504,31 @@ export const __webpack_modules__ = {
34504
34504
  }),
34505
34505
  (null !== input.copy || _report(_exceptionable, {
34506
34506
  path: _path + ".copy",
34507
- expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
34507
+ expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
34508
34508
  value: input.copy
34509
34509
  })) && (void 0 === input.copy || Array.isArray(input.copy) && input.copy.map((elem, _index692)=>(null !== elem || _report(_exceptionable, {
34510
34510
  path: _path + ".copy[" + _index692 + "]",
34511
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
34511
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
34512
34512
  value: elem
34513
34513
  })) && (void 0 !== elem || _report(_exceptionable, {
34514
34514
  path: _path + ".copy[" + _index692 + "]",
34515
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
34515
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
34516
34516
  value: elem
34517
34517
  })) && ("string" == typeof elem || ("object" == typeof elem && null !== elem || _report(_exceptionable, {
34518
34518
  path: _path + ".copy[" + _index692 + "]",
34519
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
34519
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
34520
34520
  value: elem
34521
34521
  })) && _vo378(elem, _path + ".copy[" + _index692 + "]", _exceptionable) || _report(_exceptionable, {
34522
34522
  path: _path + ".copy[" + _index692 + "]",
34523
- expected: "(string | { from: string; } & Partial<RawCopyPattern>)",
34523
+ expected: "(Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">> | string)",
34524
34524
  value: elem
34525
34525
  }))).every((flag)=>flag) || "object" == typeof input.copy && null !== input.copy && _vo377(input.copy, _path + ".copy", _exceptionable) || _report(_exceptionable, {
34526
34526
  path: _path + ".copy",
34527
- expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
34527
+ expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
34528
34528
  value: input.copy
34529
34529
  }) || _report(_exceptionable, {
34530
34530
  path: _path + ".copy",
34531
- expected: "(Array<string | ({ from: string; } & Partial<RawCopyPattern>)> | CopyRspackPluginOptions | undefined)",
34531
+ expected: "(Array<string | (Pick<RawCopyPattern, \"from\"> & Partial<Omit<RawCopyPattern, \"from\">>)> | CopyRspackPluginOptions | undefined)",
34532
34532
  value: input.copy
34533
34533
  })),
34534
34534
  void 0 === input.cssModules || ("object" == typeof input.cssModules && null !== input.cssModules && false === Array.isArray(input.cssModules) || _report(_exceptionable, {
@@ -35823,11 +35823,11 @@ export const __webpack_modules__ = {
35823
35823
  }),
35824
35824
  void 0 === input.loaderInterceptorOptions || ("object" == typeof input.loaderInterceptorOptions && null !== input.loaderInterceptorOptions && false === Array.isArray(input.loaderInterceptorOptions) || _report(_exceptionable, {
35825
35825
  path: _path + ".loaderInterceptorOptions",
35826
- expected: "(__type.o117 | undefined)",
35826
+ expected: "(__type.o116 | undefined)",
35827
35827
  value: input.loaderInterceptorOptions
35828
35828
  })) && _vo441(input.loaderInterceptorOptions, _path + ".loaderInterceptorOptions", _exceptionable) || _report(_exceptionable, {
35829
35829
  path: _path + ".loaderInterceptorOptions",
35830
- expected: "(__type.o117 | undefined)",
35830
+ expected: "(__type.o116 | undefined)",
35831
35831
  value: input.loaderInterceptorOptions
35832
35832
  }),
35833
35833
  void 0 === input.disableClientServer || "boolean" == typeof input.disableClientServer || _report(_exceptionable, {
@@ -35883,11 +35883,11 @@ export const __webpack_modules__ = {
35883
35883
  }),
35884
35884
  void 0 === input.output || ("object" == typeof input.output && null !== input.output && false === Array.isArray(input.output) || _report(_exceptionable, {
35885
35885
  path: _path + ".output",
35886
- expected: "(__type.o118 | undefined)",
35886
+ expected: "(__type.o117 | undefined)",
35887
35887
  value: input.output
35888
35888
  })) && _vo455(input.output, _path + ".output", _exceptionable) || _report(_exceptionable, {
35889
35889
  path: _path + ".output",
35890
- expected: "(__type.o118 | undefined)",
35890
+ expected: "(__type.o117 | undefined)",
35891
35891
  value: input.output
35892
35892
  }),
35893
35893
  0 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
@@ -37185,7 +37185,7 @@ export const __webpack_modules__ = {
37185
37185
  });
37186
37186
  })();
37187
37187
  const _vu3 = (input, _path, _exceptionable = true)=>(()=>{
37188
- if (void 0 !== input["__@toStringTag@6635"]) return _vo155(input, _path, _exceptionable);
37188
+ if (void 0 !== input["__@toStringTag@6634"]) return _vo155(input, _path, _exceptionable);
37189
37189
  if (void 0 !== input.pem) return _vo156(input, _path, _exceptionable);
37190
37190
  return _report(_exceptionable, {
37191
37191
  path: _path,
@@ -37194,7 +37194,7 @@ export const __webpack_modules__ = {
37194
37194
  });
37195
37195
  })();
37196
37196
  const _vu4 = (input, _path, _exceptionable = true)=>(()=>{
37197
- if (void 0 !== input["__@toStringTag@6635"]) return _vo155(input, _path, _exceptionable);
37197
+ if (void 0 !== input["__@toStringTag@6634"]) return _vo155(input, _path, _exceptionable);
37198
37198
  if (void 0 !== input.buf) return _vo157(input, _path, _exceptionable);
37199
37199
  return _report(_exceptionable, {
37200
37200
  path: _path,
@@ -37204,7 +37204,7 @@ export const __webpack_modules__ = {
37204
37204
  })();
37205
37205
  const _vu5 = (input, _path, _exceptionable = true)=>(()=>{
37206
37206
  if (void 0 !== input.name) return _vo404(input, _path, _exceptionable);
37207
- if (void 0 !== input["__@toStringTag@6635"]) return _vo405(input, _path, _exceptionable);
37207
+ if (void 0 !== input["__@toStringTag@6634"]) return _vo405(input, _path, _exceptionable);
37208
37208
  return _report(_exceptionable, {
37209
37209
  path: _path,
37210
37210
  expected: "(LooseRsbuildPlugin | RsbuildPlugins | LooseRsbuildPlugin | Falsy)",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/rspeedy-canary",
3
- "version": "0.9.7",
3
+ "version": "0.9.8-canary-20250528-633a10e2",
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.21",
52
+ "@rsbuild/core": "1.3.22",
53
53
  "@rsbuild/plugin-css-minimizer": "1.0.2",
54
54
  "@rsdoctor/rspack-plugin": "1.1.2"
55
55
  },