@lynx-js/rspeedy 0.9.5 → 0.9.7
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 +34 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +4 -2
- package/dist/src_cli_build_ts.js +5 -3
- package/dist/src_cli_commands_ts.js +1 -1
- package/dist/src_cli_dev_ts.js +5 -3
- package/dist/src_cli_inspect_ts.js +5 -3
- package/dist/src_cli_preview_ts.js +5 -3
- package/dist/src_config_validate_ts.js +67 -32
- package/dist/src_version_ts.js +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @lynx-js/rspeedy
|
|
2
2
|
|
|
3
|
+
## 0.9.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- The default value of `output.inlineScripts` should be `true`. ([#915](https://github.com/lynx-family/lynx-stack/pull/915))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`c210b79`](https://github.com/lynx-family/lynx-stack/commit/c210b79319cf014c89c2215f5e0940163eccfa1e)]:
|
|
10
|
+
- @lynx-js/chunk-loading-webpack-plugin@0.3.0
|
|
11
|
+
|
|
12
|
+
## 0.9.6
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Support `output.inlineScripts`, which controls whether to inline scripts into Lynx bundle (`.lynx.bundle`). ([#874](https://github.com/lynx-family/lynx-stack/pull/874))
|
|
17
|
+
|
|
18
|
+
Only background thread scripts can remain non-inlined, whereas the main thread script is always inlined.
|
|
19
|
+
|
|
20
|
+
example:
|
|
21
|
+
|
|
22
|
+
```js
|
|
23
|
+
import { defineConfig } from '@lynx-js/rspeedy'
|
|
24
|
+
|
|
25
|
+
export default defineConfig({
|
|
26
|
+
output: {
|
|
27
|
+
inlineScripts: false,
|
|
28
|
+
},
|
|
29
|
+
})
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
- Bump Rsbuild v1.3.21 with Rspack v1.3.11. ([#863](https://github.com/lynx-family/lynx-stack/pull/863))
|
|
33
|
+
|
|
34
|
+
- Updated dependencies [[`5b67bde`](https://github.com/lynx-family/lynx-stack/commit/5b67bde8a7286b9dcc727c9707cf83020bb5abfa)]:
|
|
35
|
+
- @lynx-js/chunk-loading-webpack-plugin@0.2.1
|
|
36
|
+
|
|
3
37
|
## 0.9.5
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1958,6 +1958,31 @@ export declare interface Output {
|
|
|
1958
1958
|
* - `contenthash`: The hash value of the file content. The hash value will only change when the content of the file itself changes.
|
|
1959
1959
|
*/
|
|
1960
1960
|
filenameHash?: boolean | string | undefined;
|
|
1961
|
+
/**
|
|
1962
|
+
* The {@link Output.inlineScripts} option controls whether to inline scripts into Lynx bundle (`.lynx.bundle`).
|
|
1963
|
+
*
|
|
1964
|
+
* @remarks
|
|
1965
|
+
*
|
|
1966
|
+
* If no value is provided, the default value would be `true`.
|
|
1967
|
+
*
|
|
1968
|
+
* This is different with {@link https://rsbuild.dev/config/output/inline-scripts | output.inlineScripts } since we normally want to inline scripts in Lynx bundle (`.lynx.bundle`).
|
|
1969
|
+
*
|
|
1970
|
+
* Only background thread scripts can remain non-inlined, whereas the main thread script is always inlined.
|
|
1971
|
+
*
|
|
1972
|
+
* @example
|
|
1973
|
+
*
|
|
1974
|
+
* Disable inlining background thread scripts.
|
|
1975
|
+
* ```js
|
|
1976
|
+
* import { defineConfig } from '@lynx-js/rspeedy'
|
|
1977
|
+
*
|
|
1978
|
+
* export default defineConfig({
|
|
1979
|
+
* output: {
|
|
1980
|
+
* inlineScripts: false,
|
|
1981
|
+
* },
|
|
1982
|
+
* })
|
|
1983
|
+
* ```
|
|
1984
|
+
*/
|
|
1985
|
+
inlineScripts?: boolean | undefined;
|
|
1961
1986
|
/**
|
|
1962
1987
|
* The {@link Output.legalComments} controls how to handle the legal comment.
|
|
1963
1988
|
*
|
package/dist/index.js
CHANGED
|
@@ -112,7 +112,7 @@ var __webpack_modules__ = {
|
|
|
112
112
|
});
|
|
113
113
|
var core_ = __webpack_require__("@rsbuild/core");
|
|
114
114
|
var package_namespaceObject = {
|
|
115
|
-
i8: "0.9.
|
|
115
|
+
i8: "0.9.7"
|
|
116
116
|
};
|
|
117
117
|
const version = package_namespaceObject.i8;
|
|
118
118
|
const rspackVersion = core_.rspack.rspackVersion;
|
|
@@ -256,7 +256,8 @@ var core_ = __webpack_require__("@rsbuild/core");
|
|
|
256
256
|
function applyDefaultRspeedyConfig(config) {
|
|
257
257
|
const ret = (0, core_.mergeRsbuildConfig)({
|
|
258
258
|
output: {
|
|
259
|
-
filename: getFilename(config.output?.filename)
|
|
259
|
+
filename: getFilename(config.output?.filename),
|
|
260
|
+
inlineScripts: true
|
|
260
261
|
},
|
|
261
262
|
tools: {
|
|
262
263
|
rsdoctor: {
|
|
@@ -343,6 +344,7 @@ function toRsbuildConfig(config) {
|
|
|
343
344
|
dataUriLimit: config.output?.dataUriLimit ?? defaultDataUriLimit,
|
|
344
345
|
distPath: config.output?.distPath,
|
|
345
346
|
filenameHash: config.output?.filenameHash,
|
|
347
|
+
inlineScripts: config.output?.inlineScripts,
|
|
346
348
|
legalComments: config.output?.legalComments ?? 'none',
|
|
347
349
|
polyfill: 'off',
|
|
348
350
|
sourceMap: config.output?.sourceMap
|
package/dist/src_cli_build_ts.js
CHANGED
|
@@ -15,7 +15,7 @@ export const __webpack_modules__ = {
|
|
|
15
15
|
async function build(cwd, buildOptions) {
|
|
16
16
|
const shouldExit = 'true' !== process.env['RSDOCTOR'] || (0, _utils_is_ci_js__WEBPACK_IMPORTED_MODULE_4__.y)();
|
|
17
17
|
try {
|
|
18
|
-
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_3__.
|
|
18
|
+
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_3__.init)(cwd, buildOptions);
|
|
19
19
|
const rspeedy = await (0, _create_rspeedy_js__WEBPACK_IMPORTED_MODULE_2__.S)(createRspeedyOptions);
|
|
20
20
|
await rspeedy.build();
|
|
21
21
|
} catch (error) {
|
|
@@ -27,7 +27,7 @@ export const __webpack_modules__ = {
|
|
|
27
27
|
},
|
|
28
28
|
"./src/cli/init.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
29
29
|
__webpack_require__.d(__webpack_exports__, {
|
|
30
|
-
|
|
30
|
+
init: ()=>init
|
|
31
31
|
});
|
|
32
32
|
var external_node_fs_ = __webpack_require__("node:fs");
|
|
33
33
|
var external_node_path_ = __webpack_require__("node:path");
|
|
@@ -143,7 +143,8 @@ export const __webpack_modules__ = {
|
|
|
143
143
|
function applyDefaultRspeedyConfig(config) {
|
|
144
144
|
const ret = (0, core_.mergeRsbuildConfig)({
|
|
145
145
|
output: {
|
|
146
|
-
filename: getFilename(config.output?.filename)
|
|
146
|
+
filename: getFilename(config.output?.filename),
|
|
147
|
+
inlineScripts: true
|
|
147
148
|
},
|
|
148
149
|
tools: {
|
|
149
150
|
rsdoctor: {
|
|
@@ -230,6 +231,7 @@ export const __webpack_modules__ = {
|
|
|
230
231
|
dataUriLimit: config.output?.dataUriLimit ?? defaultDataUriLimit,
|
|
231
232
|
distPath: config.output?.distPath,
|
|
232
233
|
filenameHash: config.output?.filenameHash,
|
|
234
|
+
inlineScripts: config.output?.inlineScripts,
|
|
233
235
|
legalComments: config.output?.legalComments ?? 'none',
|
|
234
236
|
polyfill: 'off',
|
|
235
237
|
sourceMap: config.output?.sourceMap
|
|
@@ -40,7 +40,7 @@ export const __webpack_modules__ = {
|
|
|
40
40
|
});
|
|
41
41
|
var core_ = __webpack_require__("@rsbuild/core");
|
|
42
42
|
var package_namespaceObject = {
|
|
43
|
-
i8: "0.9.
|
|
43
|
+
i8: "0.9.7"
|
|
44
44
|
};
|
|
45
45
|
const version = package_namespaceObject.i8;
|
|
46
46
|
const rspackVersion = core_.rspack.rspackVersion;
|
package/dist/src_cli_dev_ts.js
CHANGED
|
@@ -17,7 +17,7 @@ export const __webpack_modules__ = {
|
|
|
17
17
|
async function dev(cwd, devOptions) {
|
|
18
18
|
let onBeforeRestart = [];
|
|
19
19
|
try {
|
|
20
|
-
const { rspeedyConfig, configPath, createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_4__.
|
|
20
|
+
const { rspeedyConfig, configPath, createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_4__.init)(cwd, devOptions);
|
|
21
21
|
const watchedFiles = [
|
|
22
22
|
configPath
|
|
23
23
|
];
|
|
@@ -70,7 +70,7 @@ export const __webpack_modules__ = {
|
|
|
70
70
|
},
|
|
71
71
|
"./src/cli/init.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
72
72
|
__webpack_require__.d(__webpack_exports__, {
|
|
73
|
-
|
|
73
|
+
init: ()=>init
|
|
74
74
|
});
|
|
75
75
|
var external_node_fs_ = __webpack_require__("node:fs");
|
|
76
76
|
var external_node_path_ = __webpack_require__("node:path");
|
|
@@ -186,7 +186,8 @@ export const __webpack_modules__ = {
|
|
|
186
186
|
function applyDefaultRspeedyConfig(config) {
|
|
187
187
|
const ret = (0, core_.mergeRsbuildConfig)({
|
|
188
188
|
output: {
|
|
189
|
-
filename: getFilename(config.output?.filename)
|
|
189
|
+
filename: getFilename(config.output?.filename),
|
|
190
|
+
inlineScripts: true
|
|
190
191
|
},
|
|
191
192
|
tools: {
|
|
192
193
|
rsdoctor: {
|
|
@@ -273,6 +274,7 @@ export const __webpack_modules__ = {
|
|
|
273
274
|
dataUriLimit: config.output?.dataUriLimit ?? defaultDataUriLimit,
|
|
274
275
|
distPath: config.output?.distPath,
|
|
275
276
|
filenameHash: config.output?.filenameHash,
|
|
277
|
+
inlineScripts: config.output?.inlineScripts,
|
|
276
278
|
legalComments: config.output?.legalComments ?? 'none',
|
|
277
279
|
polyfill: 'off',
|
|
278
280
|
sourceMap: config.output?.sourceMap
|
|
@@ -4,7 +4,7 @@ export const __webpack_ids__ = [
|
|
|
4
4
|
export const __webpack_modules__ = {
|
|
5
5
|
"./src/cli/init.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6
6
|
__webpack_require__.d(__webpack_exports__, {
|
|
7
|
-
|
|
7
|
+
init: ()=>init
|
|
8
8
|
});
|
|
9
9
|
var external_node_fs_ = __webpack_require__("node:fs");
|
|
10
10
|
var external_node_path_ = __webpack_require__("node:path");
|
|
@@ -122,7 +122,7 @@ export const __webpack_modules__ = {
|
|
|
122
122
|
var _init_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("./src/cli/init.ts");
|
|
123
123
|
async function inspect(cwd, inspectOptions) {
|
|
124
124
|
try {
|
|
125
|
-
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_3__.
|
|
125
|
+
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_3__.init)(cwd, inspectOptions);
|
|
126
126
|
const rspeedy = await (0, _create_rspeedy_js__WEBPACK_IMPORTED_MODULE_2__.S)(createRspeedyOptions);
|
|
127
127
|
await rspeedy.inspectConfig({
|
|
128
128
|
mode: inspectOptions.mode ?? process.env['NODE_ENV'] ?? 'development',
|
|
@@ -146,7 +146,8 @@ export const __webpack_modules__ = {
|
|
|
146
146
|
function applyDefaultRspeedyConfig(config) {
|
|
147
147
|
const ret = (0, core_.mergeRsbuildConfig)({
|
|
148
148
|
output: {
|
|
149
|
-
filename: getFilename(config.output?.filename)
|
|
149
|
+
filename: getFilename(config.output?.filename),
|
|
150
|
+
inlineScripts: true
|
|
150
151
|
},
|
|
151
152
|
tools: {
|
|
152
153
|
rsdoctor: {
|
|
@@ -233,6 +234,7 @@ export const __webpack_modules__ = {
|
|
|
233
234
|
dataUriLimit: config.output?.dataUriLimit ?? defaultDataUriLimit,
|
|
234
235
|
distPath: config.output?.distPath,
|
|
235
236
|
filenameHash: config.output?.filenameHash,
|
|
237
|
+
inlineScripts: config.output?.inlineScripts,
|
|
236
238
|
legalComments: config.output?.legalComments ?? 'none',
|
|
237
239
|
polyfill: 'off',
|
|
238
240
|
sourceMap: config.output?.sourceMap
|
|
@@ -4,7 +4,7 @@ export const __webpack_ids__ = [
|
|
|
4
4
|
export const __webpack_modules__ = {
|
|
5
5
|
"./src/cli/init.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6
6
|
__webpack_require__.d(__webpack_exports__, {
|
|
7
|
-
|
|
7
|
+
init: ()=>init
|
|
8
8
|
});
|
|
9
9
|
var external_node_fs_ = __webpack_require__("node:fs");
|
|
10
10
|
var external_node_path_ = __webpack_require__("node:path");
|
|
@@ -125,7 +125,7 @@ export const __webpack_modules__ = {
|
|
|
125
125
|
var _init_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("./src/cli/init.ts");
|
|
126
126
|
async function preview(cwd, previewOptions) {
|
|
127
127
|
try {
|
|
128
|
-
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_4__.
|
|
128
|
+
const { createRspeedyOptions } = await (0, _init_js__WEBPACK_IMPORTED_MODULE_4__.init)(cwd, previewOptions);
|
|
129
129
|
const rspeedy = await (0, _create_rspeedy_js__WEBPACK_IMPORTED_MODULE_3__.S)(createRspeedyOptions);
|
|
130
130
|
await rspeedy.initConfigs();
|
|
131
131
|
const { distPath } = rspeedy.context;
|
|
@@ -148,7 +148,8 @@ export const __webpack_modules__ = {
|
|
|
148
148
|
function applyDefaultRspeedyConfig(config) {
|
|
149
149
|
const ret = (0, core_.mergeRsbuildConfig)({
|
|
150
150
|
output: {
|
|
151
|
-
filename: getFilename(config.output?.filename)
|
|
151
|
+
filename: getFilename(config.output?.filename),
|
|
152
|
+
inlineScripts: true
|
|
152
153
|
},
|
|
153
154
|
tools: {
|
|
154
155
|
rsdoctor: {
|
|
@@ -235,6 +236,7 @@ export const __webpack_modules__ = {
|
|
|
235
236
|
dataUriLimit: config.output?.dataUriLimit ?? defaultDataUriLimit,
|
|
236
237
|
distPath: config.output?.distPath,
|
|
237
238
|
filenameHash: config.output?.filenameHash,
|
|
239
|
+
inlineScripts: config.output?.inlineScripts,
|
|
238
240
|
legalComments: config.output?.legalComments ?? 'none',
|
|
239
241
|
polyfill: 'off',
|
|
240
242
|
sourceMap: config.output?.sourceMap
|
|
@@ -2,7 +2,7 @@ export const __webpack_ids__ = [
|
|
|
2
2
|
"src_config_validate_ts"
|
|
3
3
|
];
|
|
4
4
|
export const __webpack_modules__ = {
|
|
5
|
-
"../../../node_modules/.pnpm/typia@9.3.
|
|
5
|
+
"../../../node_modules/.pnpm/typia@9.3.1_@samchon+openapi@4.3.2_typescript@5.8.3/node_modules/typia/lib/internal/_accessExpressionAsString.js": function(__unused_webpack_module, exports) {
|
|
6
6
|
exports._accessExpressionAsString = void 0;
|
|
7
7
|
const _accessExpressionAsString = (str)=>variable(str) ? `.${str}` : `[${JSON.stringify(str)}]`;
|
|
8
8
|
exports._accessExpressionAsString = _accessExpressionAsString;
|
|
@@ -47,7 +47,7 @@ export const __webpack_modules__ = {
|
|
|
47
47
|
"with"
|
|
48
48
|
]);
|
|
49
49
|
},
|
|
50
|
-
"../../../node_modules/.pnpm/typia@9.3.
|
|
50
|
+
"../../../node_modules/.pnpm/typia@9.3.1_@samchon+openapi@4.3.2_typescript@5.8.3/node_modules/typia/lib/internal/_createStandardSchema.js": function(__unused_webpack_module, exports) {
|
|
51
51
|
exports._createStandardSchema = void 0;
|
|
52
52
|
const _createStandardSchema = (fn)=>Object.assign(fn, {
|
|
53
53
|
"~standard": {
|
|
@@ -131,7 +131,7 @@ export const __webpack_modules__ = {
|
|
|
131
131
|
return segments;
|
|
132
132
|
};
|
|
133
133
|
},
|
|
134
|
-
"../../../node_modules/.pnpm/typia@9.3.
|
|
134
|
+
"../../../node_modules/.pnpm/typia@9.3.1_@samchon+openapi@4.3.2_typescript@5.8.3/node_modules/typia/lib/internal/_validateReport.js": function(__unused_webpack_module, exports) {
|
|
135
135
|
exports._validateReport = void 0;
|
|
136
136
|
const _validateReport = (array)=>{
|
|
137
137
|
const reportable = (path)=>{
|
|
@@ -152,9 +152,9 @@ export const __webpack_modules__ = {
|
|
|
152
152
|
validate: ()=>validate,
|
|
153
153
|
validateConfig: ()=>validateConfig
|
|
154
154
|
});
|
|
155
|
-
var typia_lib_internal_accessExpressionAsString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("../../../node_modules/.pnpm/typia@9.3.
|
|
156
|
-
var typia_lib_internal_validateReport_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("../../../node_modules/.pnpm/typia@9.3.
|
|
157
|
-
var typia_lib_internal_createStandardSchema_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("../../../node_modules/.pnpm/typia@9.3.
|
|
155
|
+
var typia_lib_internal_accessExpressionAsString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("../../../node_modules/.pnpm/typia@9.3.1_@samchon+openapi@4.3.2_typescript@5.8.3/node_modules/typia/lib/internal/_accessExpressionAsString.js");
|
|
156
|
+
var typia_lib_internal_validateReport_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("../../../node_modules/.pnpm/typia@9.3.1_@samchon+openapi@4.3.2_typescript@5.8.3/node_modules/typia/lib/internal/_validateReport.js");
|
|
157
|
+
var typia_lib_internal_createStandardSchema_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("../../../node_modules/.pnpm/typia@9.3.1_@samchon+openapi@4.3.2_typescript@5.8.3/node_modules/typia/lib/internal/_createStandardSchema.js");
|
|
158
158
|
var picocolors__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("../../../node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors/picocolors.js");
|
|
159
159
|
var picocolors__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/ __webpack_require__.n(picocolors__WEBPACK_IMPORTED_MODULE_3__);
|
|
160
160
|
const validateConfig = (()=>{
|
|
@@ -1414,9 +1414,9 @@ export const __webpack_modules__ = {
|
|
|
1414
1414
|
if (void 0 === value) return true;
|
|
1415
1415
|
return "string" == typeof value || "boolean" == typeof value;
|
|
1416
1416
|
});
|
|
1417
|
-
const _io50 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@
|
|
1417
|
+
const _io50 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@6635"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
1418
1418
|
if ([
|
|
1419
|
-
"__@toStringTag@
|
|
1419
|
+
"__@toStringTag@6635"
|
|
1420
1420
|
].some((prop)=>key === prop)) return true;
|
|
1421
1421
|
const value = input[key];
|
|
1422
1422
|
if (void 0 === value) return true;
|
|
@@ -2977,14 +2977,14 @@ export const __webpack_modules__ = {
|
|
|
2977
2977
|
if (void 0 === value) return true;
|
|
2978
2978
|
return false;
|
|
2979
2979
|
})));
|
|
2980
|
-
const _io155 = (input, _exceptionable = true)=>"number" == typeof input.BYTES_PER_ELEMENT && (input.buffer instanceof ArrayBuffer || input.buffer instanceof SharedArrayBuffer) && "number" == typeof input.byteLength && "number" == typeof input.byteOffset && "number" == typeof input.length && "Uint8Array" === input["__@toStringTag@
|
|
2980
|
+
const _io155 = (input, _exceptionable = true)=>"number" == typeof input.BYTES_PER_ELEMENT && (input.buffer instanceof ArrayBuffer || input.buffer instanceof SharedArrayBuffer) && "number" == typeof input.byteLength && "number" == typeof input.byteOffset && "number" == typeof input.length && "Uint8Array" === input["__@toStringTag@6635"] && Object.keys(input).every((key)=>{
|
|
2981
2981
|
if ([
|
|
2982
2982
|
"BYTES_PER_ELEMENT",
|
|
2983
2983
|
"buffer",
|
|
2984
2984
|
"byteLength",
|
|
2985
2985
|
"byteOffset",
|
|
2986
2986
|
"length",
|
|
2987
|
-
"__@toStringTag@
|
|
2987
|
+
"__@toStringTag@6635"
|
|
2988
2988
|
].some((prop)=>key === prop)) return true;
|
|
2989
2989
|
const value = input[key];
|
|
2990
2990
|
if (void 0 === value) return true;
|
|
@@ -3130,7 +3130,7 @@ export const __webpack_modules__ = {
|
|
|
3130
3130
|
if (void 0 === value) return true;
|
|
3131
3131
|
return false;
|
|
3132
3132
|
}));
|
|
3133
|
-
const _io164 = (input, _exceptionable = true)=>(void 0 === input.accept || "string" == typeof input.accept) && (void 0 === input["accept-encoding"] || "string" == typeof input["accept-encoding"]) && (void 0 === input["accept-language"] || "string" == typeof input["accept-language"]) && (void 0 === input["accept-patch"] || "string" == typeof input["accept-patch"]) && (void 0 === input["accept-ranges"] || "string" == typeof input["accept-ranges"]) && (void 0 === input["access-control-allow-credentials"] || "string" == typeof input["access-control-allow-credentials"]) && (void 0 === input["access-control-allow-headers"] || "string" == typeof input["access-control-allow-headers"]) && (void 0 === input["access-control-allow-methods"] || "string" == typeof input["access-control-allow-methods"]) && (void 0 === input["access-control-allow-origin"] || "string" == typeof input["access-control-allow-origin"]) && (void 0 === input["access-control-expose-headers"] || "string" == typeof input["access-control-expose-headers"]) && (void 0 === input["access-control-max-age"] || "string" == typeof input["access-control-max-age"]) && (void 0 === input["access-control-request-headers"] || "string" == typeof input["access-control-request-headers"]) && (void 0 === input["access-control-request-method"] || "string" == typeof input["access-control-request-method"]) && (void 0 === input.age || "string" == typeof input.age) && (void 0 === input.allow || "string" == typeof input.allow) && (void 0 === input["alt-svc"] || "string" == typeof input["alt-svc"]) && (void 0 === input.authorization || "string" == typeof input.authorization) && (void 0 === input["cache-control"] || "string" == typeof input["cache-control"]) && (void 0 === input.connection || "string" == typeof input.connection) && (void 0 === input["content-disposition"] || "string" == typeof input["content-disposition"]) && (void 0 === input["content-encoding"] || "string" == typeof input["content-encoding"]) && (void 0 === input["content-language"] || "string" == typeof input["content-language"]) && (void 0 === input["content-length"] || "string" == typeof input["content-length"]) && (void 0 === input["content-location"] || "string" == typeof input["content-location"]) && (void 0 === input["content-range"] || "string" == typeof input["content-range"]) && (void 0 === input["content-type"] || "string" == typeof input["content-type"]) && (void 0 === input.cookie || "string" == typeof input.cookie) && (void 0 === input.date || "string" == typeof input.date) && (void 0 === input.etag || "string" == typeof input.etag) && (void 0 === input.expect || "string" == typeof input.expect) && (void 0 === input.expires || "string" == typeof input.expires) && (void 0 === input.forwarded || "string" == typeof input.forwarded) && (void 0 === input.from || "string" == typeof input.from) && (void 0 === input.host || "string" == typeof input.host) && (void 0 === input["if-match"] || "string" == typeof input["if-match"]) && (void 0 === input["if-modified-since"] || "string" == typeof input["if-modified-since"]) && (void 0 === input["if-none-match"] || "string" == typeof input["if-none-match"]) && (void 0 === input["if-unmodified-since"] || "string" == typeof input["if-unmodified-since"]) && (void 0 === input["last-modified"] || "string" == typeof input["last-modified"]) && (void 0 === input.location || "string" == typeof input.location) && (void 0 === input.origin || "string" == typeof input.origin) && (void 0 === input.pragma || "string" == typeof input.pragma) && (void 0 === input["proxy-authenticate"] || "string" == typeof input["proxy-authenticate"]) && (void 0 === input["proxy-authorization"] || "string" == typeof input["proxy-authorization"]) && (void 0 === input["public-key-pins"] || "string" == typeof input["public-key-pins"]) && (void 0 === input.range || "string" == typeof input.range) && (void 0 === input.referer || "string" == typeof input.referer) && (void 0 === input["retry-after"] || "string" == typeof input["retry-after"]) && (void 0 === input["sec-websocket-accept"] || "string" == typeof input["sec-websocket-accept"]) && (void 0 === input["sec-websocket-extensions"] || "string" == typeof input["sec-websocket-extensions"]) && (void 0 === input["sec-websocket-key"] || "string" == typeof input["sec-websocket-key"]) && (void 0 === input["sec-websocket-protocol"] || "string" == typeof input["sec-websocket-protocol"]) && (void 0 === input["sec-websocket-version"] || "string" == typeof input["sec-websocket-version"]) && (void 0 === input["set-cookie"] || Array.isArray(input["set-cookie"]) && input["set-cookie"].every((elem, _index134)=>"string" == typeof elem)) && (void 0 === input["strict-transport-security"] || "string" == typeof input["strict-transport-security"]) && (void 0 === input.tk || "string" == typeof input.tk) && (void 0 === input.trailer || "string" == typeof input.trailer) && (void 0 === input["transfer-encoding"] || "string" == typeof input["transfer-encoding"]) && (void 0 === input.upgrade || "string" == typeof input.upgrade) && (void 0 === input["user-agent"] || "string" == typeof input["user-agent"]) && (void 0 === input.vary || "string" == typeof input.vary) && (void 0 === input.via || "string" == typeof input.via) && (void 0 === input.warning || "string" == typeof input.warning) && (void 0 === input["www-authenticate"] || "string" == typeof input["www-authenticate"]) && Object.keys(input).every((key)=>{
|
|
3133
|
+
const _io164 = (input, _exceptionable = true)=>(void 0 === input.accept || "string" == typeof input.accept) && (void 0 === input["accept-encoding"] || "string" == typeof input["accept-encoding"]) && (void 0 === input["accept-language"] || "string" == typeof input["accept-language"]) && (void 0 === input["accept-patch"] || "string" == typeof input["accept-patch"]) && (void 0 === input["accept-ranges"] || "string" == typeof input["accept-ranges"]) && (void 0 === input["access-control-allow-credentials"] || "string" == typeof input["access-control-allow-credentials"]) && (void 0 === input["access-control-allow-headers"] || "string" == typeof input["access-control-allow-headers"]) && (void 0 === input["access-control-allow-methods"] || "string" == typeof input["access-control-allow-methods"]) && (void 0 === input["access-control-allow-origin"] || "string" == typeof input["access-control-allow-origin"]) && (void 0 === input["access-control-expose-headers"] || "string" == typeof input["access-control-expose-headers"]) && (void 0 === input["access-control-max-age"] || "string" == typeof input["access-control-max-age"]) && (void 0 === input["access-control-request-headers"] || "string" == typeof input["access-control-request-headers"]) && (void 0 === input["access-control-request-method"] || "string" == typeof input["access-control-request-method"]) && (void 0 === input.age || "string" == typeof input.age) && (void 0 === input.allow || "string" == typeof input.allow) && (void 0 === input["alt-svc"] || "string" == typeof input["alt-svc"]) && (void 0 === input.authorization || "string" == typeof input.authorization) && (void 0 === input["cache-control"] || "string" == typeof input["cache-control"]) && (void 0 === input.connection || "string" == typeof input.connection) && (void 0 === input["content-disposition"] || "string" == typeof input["content-disposition"]) && (void 0 === input["content-encoding"] || "string" == typeof input["content-encoding"]) && (void 0 === input["content-language"] || "string" == typeof input["content-language"]) && (void 0 === input["content-length"] || "string" == typeof input["content-length"]) && (void 0 === input["content-location"] || "string" == typeof input["content-location"]) && (void 0 === input["content-range"] || "string" == typeof input["content-range"]) && (void 0 === input["content-type"] || "string" == typeof input["content-type"]) && (void 0 === input.cookie || "string" == typeof input.cookie) && (void 0 === input.date || "string" == typeof input.date) && (void 0 === input.etag || "string" == typeof input.etag) && (void 0 === input.expect || "string" == typeof input.expect) && (void 0 === input.expires || "string" == typeof input.expires) && (void 0 === input.forwarded || "string" == typeof input.forwarded) && (void 0 === input.from || "string" == typeof input.from) && (void 0 === input.host || "string" == typeof input.host) && (void 0 === input["if-match"] || "string" == typeof input["if-match"]) && (void 0 === input["if-modified-since"] || "string" == typeof input["if-modified-since"]) && (void 0 === input["if-none-match"] || "string" == typeof input["if-none-match"]) && (void 0 === input["if-unmodified-since"] || "string" == typeof input["if-unmodified-since"]) && (void 0 === input["last-modified"] || "string" == typeof input["last-modified"]) && (void 0 === input.location || "string" == typeof input.location) && (void 0 === input.origin || "string" == typeof input.origin) && (void 0 === input.pragma || "string" == typeof input.pragma) && (void 0 === input["proxy-authenticate"] || "string" == typeof input["proxy-authenticate"]) && (void 0 === input["proxy-authorization"] || "string" == typeof input["proxy-authorization"]) && (void 0 === input["public-key-pins"] || "string" == typeof input["public-key-pins"]) && (void 0 === input.range || "string" == typeof input.range) && (void 0 === input.referer || "string" == typeof input.referer) && (void 0 === input["retry-after"] || "string" == typeof input["retry-after"]) && (void 0 === input["sec-fetch-site"] || "string" == typeof input["sec-fetch-site"]) && (void 0 === input["sec-fetch-mode"] || "string" == typeof input["sec-fetch-mode"]) && (void 0 === input["sec-fetch-user"] || "string" == typeof input["sec-fetch-user"]) && (void 0 === input["sec-fetch-dest"] || "string" == typeof input["sec-fetch-dest"]) && (void 0 === input["sec-websocket-accept"] || "string" == typeof input["sec-websocket-accept"]) && (void 0 === input["sec-websocket-extensions"] || "string" == typeof input["sec-websocket-extensions"]) && (void 0 === input["sec-websocket-key"] || "string" == typeof input["sec-websocket-key"]) && (void 0 === input["sec-websocket-protocol"] || "string" == typeof input["sec-websocket-protocol"]) && (void 0 === input["sec-websocket-version"] || "string" == typeof input["sec-websocket-version"]) && (void 0 === input["set-cookie"] || Array.isArray(input["set-cookie"]) && input["set-cookie"].every((elem, _index134)=>"string" == typeof elem)) && (void 0 === input["strict-transport-security"] || "string" == typeof input["strict-transport-security"]) && (void 0 === input.tk || "string" == typeof input.tk) && (void 0 === input.trailer || "string" == typeof input.trailer) && (void 0 === input["transfer-encoding"] || "string" == typeof input["transfer-encoding"]) && (void 0 === input.upgrade || "string" == typeof input.upgrade) && (void 0 === input["user-agent"] || "string" == typeof input["user-agent"]) && (void 0 === input.vary || "string" == typeof input.vary) && (void 0 === input.via || "string" == typeof input.via) && (void 0 === input.warning || "string" == typeof input.warning) && (void 0 === input["www-authenticate"] || "string" == typeof input["www-authenticate"]) && Object.keys(input).every((key)=>{
|
|
3134
3134
|
if ([
|
|
3135
3135
|
"accept",
|
|
3136
3136
|
"accept-encoding",
|
|
@@ -3180,6 +3180,10 @@ export const __webpack_modules__ = {
|
|
|
3180
3180
|
"range",
|
|
3181
3181
|
"referer",
|
|
3182
3182
|
"retry-after",
|
|
3183
|
+
"sec-fetch-site",
|
|
3184
|
+
"sec-fetch-mode",
|
|
3185
|
+
"sec-fetch-user",
|
|
3186
|
+
"sec-fetch-dest",
|
|
3183
3187
|
"sec-websocket-accept",
|
|
3184
3188
|
"sec-websocket-extensions",
|
|
3185
3189
|
"sec-websocket-key",
|
|
@@ -6121,15 +6125,15 @@ export const __webpack_modules__ = {
|
|
|
6121
6125
|
if (void 0 === value) return true;
|
|
6122
6126
|
return false;
|
|
6123
6127
|
}));
|
|
6124
|
-
const _io405 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@
|
|
6128
|
+
const _io405 = (input, _exceptionable = true)=>"string" == typeof input["__@toStringTag@6635"] && (1 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
6125
6129
|
if ([
|
|
6126
|
-
"__@toStringTag@
|
|
6130
|
+
"__@toStringTag@6635"
|
|
6127
6131
|
].some((prop)=>key === prop)) return true;
|
|
6128
6132
|
const value = input[key];
|
|
6129
6133
|
if (void 0 === value) return true;
|
|
6130
6134
|
return false;
|
|
6131
6135
|
}));
|
|
6132
|
-
const _io406 = (input, _exceptionable = true)=>(void 0 === input.assetPrefix || "string" == typeof input.assetPrefix) && (void 0 === input.cleanDistPath || "boolean" == typeof input.cleanDistPath) && null !== input.copy && (void 0 === input.copy || Array.isArray(input.copy) && input.copy.every((elem, _index328)=>null != elem && ("string" == typeof elem || "object" == typeof elem && null !== elem && _io378(elem, _exceptionable))) || "object" == typeof input.copy && null !== input.copy && _io377(input.copy, _exceptionable)) && (void 0 === input.cssModules || "object" == typeof input.cssModules && null !== input.cssModules && false === Array.isArray(input.cssModules) && _io407(input.cssModules, _exceptionable)) && (void 0 === input.dataUriLimit || "number" == typeof input.dataUriLimit) && (void 0 === input.distPath || "object" == typeof input.distPath && null !== input.distPath && false === Array.isArray(input.distPath) && _io408(input.distPath, _exceptionable)) && null !== input.filename && (void 0 === input.filename || "string" == typeof input.filename || "object" == typeof input.filename && null !== input.filename && false === Array.isArray(input.filename) && _io409(input.filename, _exceptionable)) && (void 0 === input.filenameHash || "string" == typeof input.filenameHash || "boolean" == typeof input.filenameHash) && (void 0 === input.legalComments || "none" === input.legalComments || "inline" === input.legalComments || "linked" === input.legalComments) && null !== input.minify && (void 0 === input.minify || "boolean" == typeof input.minify || "object" == typeof input.minify && null !== input.minify && false === Array.isArray(input.minify) && _io410(input.minify, _exceptionable)) && null !== input.sourceMap && (void 0 === input.sourceMap || "boolean" == typeof input.sourceMap || "object" == typeof input.sourceMap && null !== input.sourceMap && false === Array.isArray(input.sourceMap) && _io411(input.sourceMap, _exceptionable)) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
6136
|
+
const _io406 = (input, _exceptionable = true)=>(void 0 === input.assetPrefix || "string" == typeof input.assetPrefix) && (void 0 === input.cleanDistPath || "boolean" == typeof input.cleanDistPath) && null !== input.copy && (void 0 === input.copy || Array.isArray(input.copy) && input.copy.every((elem, _index328)=>null != elem && ("string" == typeof elem || "object" == typeof elem && null !== elem && _io378(elem, _exceptionable))) || "object" == typeof input.copy && null !== input.copy && _io377(input.copy, _exceptionable)) && (void 0 === input.cssModules || "object" == typeof input.cssModules && null !== input.cssModules && false === Array.isArray(input.cssModules) && _io407(input.cssModules, _exceptionable)) && (void 0 === input.dataUriLimit || "number" == typeof input.dataUriLimit) && (void 0 === input.distPath || "object" == typeof input.distPath && null !== input.distPath && false === Array.isArray(input.distPath) && _io408(input.distPath, _exceptionable)) && null !== input.filename && (void 0 === input.filename || "string" == typeof input.filename || "object" == typeof input.filename && null !== input.filename && false === Array.isArray(input.filename) && _io409(input.filename, _exceptionable)) && (void 0 === input.filenameHash || "string" == typeof input.filenameHash || "boolean" == typeof input.filenameHash) && (void 0 === input.inlineScripts || "boolean" == typeof input.inlineScripts) && (void 0 === input.legalComments || "none" === input.legalComments || "inline" === input.legalComments || "linked" === input.legalComments) && null !== input.minify && (void 0 === input.minify || "boolean" == typeof input.minify || "object" == typeof input.minify && null !== input.minify && false === Array.isArray(input.minify) && _io410(input.minify, _exceptionable)) && null !== input.sourceMap && (void 0 === input.sourceMap || "boolean" == typeof input.sourceMap || "object" == typeof input.sourceMap && null !== input.sourceMap && false === Array.isArray(input.sourceMap) && _io411(input.sourceMap, _exceptionable)) && (0 === Object.keys(input).length || Object.keys(input).every((key)=>{
|
|
6133
6137
|
if ([
|
|
6134
6138
|
"assetPrefix",
|
|
6135
6139
|
"cleanDistPath",
|
|
@@ -6139,6 +6143,7 @@ export const __webpack_modules__ = {
|
|
|
6139
6143
|
"distPath",
|
|
6140
6144
|
"filename",
|
|
6141
6145
|
"filenameHash",
|
|
6146
|
+
"inlineScripts",
|
|
6142
6147
|
"legalComments",
|
|
6143
6148
|
"minify",
|
|
6144
6149
|
"sourceMap"
|
|
@@ -6714,18 +6719,18 @@ export const __webpack_modules__ = {
|
|
|
6714
6719
|
return false;
|
|
6715
6720
|
})();
|
|
6716
6721
|
const _iu3 = (input, _exceptionable = true)=>(()=>{
|
|
6717
|
-
if (void 0 !== input["__@toStringTag@
|
|
6722
|
+
if (void 0 !== input["__@toStringTag@6635"]) return _io155(input, _exceptionable);
|
|
6718
6723
|
if (void 0 !== input.pem) return _io156(input, _exceptionable);
|
|
6719
6724
|
return false;
|
|
6720
6725
|
})();
|
|
6721
6726
|
const _iu4 = (input, _exceptionable = true)=>(()=>{
|
|
6722
|
-
if (void 0 !== input["__@toStringTag@
|
|
6727
|
+
if (void 0 !== input["__@toStringTag@6635"]) return _io155(input, _exceptionable);
|
|
6723
6728
|
if (void 0 !== input.buf) return _io157(input, _exceptionable);
|
|
6724
6729
|
return false;
|
|
6725
6730
|
})();
|
|
6726
6731
|
const _iu5 = (input, _exceptionable = true)=>(()=>{
|
|
6727
6732
|
if (void 0 !== input.name) return _io404(input, _exceptionable);
|
|
6728
|
-
if (void 0 !== input["__@toStringTag@
|
|
6733
|
+
if (void 0 !== input["__@toStringTag@6635"]) return _io405(input, _exceptionable);
|
|
6729
6734
|
return false;
|
|
6730
6735
|
})();
|
|
6731
6736
|
const _iu6 = (input, _exceptionable = true)=>(()=>{
|
|
@@ -9469,14 +9474,14 @@ export const __webpack_modules__ = {
|
|
|
9469
9474
|
}).every((flag)=>flag)
|
|
9470
9475
|
].every((flag)=>flag);
|
|
9471
9476
|
const _vo50 = (input, _path, _exceptionable = true)=>[
|
|
9472
|
-
"string" == typeof input["__@toStringTag@
|
|
9473
|
-
path: _path + "[\"__@toStringTag@
|
|
9477
|
+
"string" == typeof input["__@toStringTag@6635"] || _report(_exceptionable, {
|
|
9478
|
+
path: _path + "[\"__@toStringTag@6635\"]",
|
|
9474
9479
|
expected: "string",
|
|
9475
|
-
value: input["__@toStringTag@
|
|
9480
|
+
value: input["__@toStringTag@6635"]
|
|
9476
9481
|
}),
|
|
9477
9482
|
1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
|
|
9478
9483
|
if ([
|
|
9479
|
-
"__@toStringTag@
|
|
9484
|
+
"__@toStringTag@6635"
|
|
9480
9485
|
].some((prop)=>key === prop)) return true;
|
|
9481
9486
|
const value = input[key];
|
|
9482
9487
|
if (void 0 === value) return true;
|
|
@@ -17835,10 +17840,10 @@ export const __webpack_modules__ = {
|
|
|
17835
17840
|
expected: "number",
|
|
17836
17841
|
value: input.length
|
|
17837
17842
|
}),
|
|
17838
|
-
"Uint8Array" === input["__@toStringTag@
|
|
17839
|
-
path: _path + "[\"__@toStringTag@
|
|
17843
|
+
"Uint8Array" === input["__@toStringTag@6635"] || _report(_exceptionable, {
|
|
17844
|
+
path: _path + "[\"__@toStringTag@6635\"]",
|
|
17840
17845
|
expected: "\"Uint8Array\"",
|
|
17841
|
-
value: input["__@toStringTag@
|
|
17846
|
+
value: input["__@toStringTag@6635"]
|
|
17842
17847
|
}),
|
|
17843
17848
|
false === _exceptionable || Object.keys(input).map((key)=>{
|
|
17844
17849
|
if ([
|
|
@@ -17847,7 +17852,7 @@ export const __webpack_modules__ = {
|
|
|
17847
17852
|
"byteLength",
|
|
17848
17853
|
"byteOffset",
|
|
17849
17854
|
"length",
|
|
17850
|
-
"__@toStringTag@
|
|
17855
|
+
"__@toStringTag@6635"
|
|
17851
17856
|
].some((prop)=>key === prop)) return true;
|
|
17852
17857
|
const value = input[key];
|
|
17853
17858
|
if (void 0 === value) return true;
|
|
@@ -18782,6 +18787,26 @@ export const __webpack_modules__ = {
|
|
|
18782
18787
|
expected: "(string | undefined)",
|
|
18783
18788
|
value: input["retry-after"]
|
|
18784
18789
|
}),
|
|
18790
|
+
void 0 === input["sec-fetch-site"] || "string" == typeof input["sec-fetch-site"] || _report(_exceptionable, {
|
|
18791
|
+
path: _path + "[\"sec-fetch-site\"]",
|
|
18792
|
+
expected: "(string | undefined)",
|
|
18793
|
+
value: input["sec-fetch-site"]
|
|
18794
|
+
}),
|
|
18795
|
+
void 0 === input["sec-fetch-mode"] || "string" == typeof input["sec-fetch-mode"] || _report(_exceptionable, {
|
|
18796
|
+
path: _path + "[\"sec-fetch-mode\"]",
|
|
18797
|
+
expected: "(string | undefined)",
|
|
18798
|
+
value: input["sec-fetch-mode"]
|
|
18799
|
+
}),
|
|
18800
|
+
void 0 === input["sec-fetch-user"] || "string" == typeof input["sec-fetch-user"] || _report(_exceptionable, {
|
|
18801
|
+
path: _path + "[\"sec-fetch-user\"]",
|
|
18802
|
+
expected: "(string | undefined)",
|
|
18803
|
+
value: input["sec-fetch-user"]
|
|
18804
|
+
}),
|
|
18805
|
+
void 0 === input["sec-fetch-dest"] || "string" == typeof input["sec-fetch-dest"] || _report(_exceptionable, {
|
|
18806
|
+
path: _path + "[\"sec-fetch-dest\"]",
|
|
18807
|
+
expected: "(string | undefined)",
|
|
18808
|
+
value: input["sec-fetch-dest"]
|
|
18809
|
+
}),
|
|
18785
18810
|
void 0 === input["sec-websocket-accept"] || "string" == typeof input["sec-websocket-accept"] || _report(_exceptionable, {
|
|
18786
18811
|
path: _path + "[\"sec-websocket-accept\"]",
|
|
18787
18812
|
expected: "(string | undefined)",
|
|
@@ -18920,6 +18945,10 @@ export const __webpack_modules__ = {
|
|
|
18920
18945
|
"range",
|
|
18921
18946
|
"referer",
|
|
18922
18947
|
"retry-after",
|
|
18948
|
+
"sec-fetch-site",
|
|
18949
|
+
"sec-fetch-mode",
|
|
18950
|
+
"sec-fetch-user",
|
|
18951
|
+
"sec-fetch-dest",
|
|
18923
18952
|
"sec-websocket-accept",
|
|
18924
18953
|
"sec-websocket-extensions",
|
|
18925
18954
|
"sec-websocket-key",
|
|
@@ -34444,14 +34473,14 @@ export const __webpack_modules__ = {
|
|
|
34444
34473
|
}).every((flag)=>flag)
|
|
34445
34474
|
].every((flag)=>flag);
|
|
34446
34475
|
const _vo405 = (input, _path, _exceptionable = true)=>[
|
|
34447
|
-
"string" == typeof input["__@toStringTag@
|
|
34448
|
-
path: _path + "[\"__@toStringTag@
|
|
34476
|
+
"string" == typeof input["__@toStringTag@6635"] || _report(_exceptionable, {
|
|
34477
|
+
path: _path + "[\"__@toStringTag@6635\"]",
|
|
34449
34478
|
expected: "string",
|
|
34450
|
-
value: input["__@toStringTag@
|
|
34479
|
+
value: input["__@toStringTag@6635"]
|
|
34451
34480
|
}),
|
|
34452
34481
|
1 === Object.keys(input).length || false === _exceptionable || Object.keys(input).map((key)=>{
|
|
34453
34482
|
if ([
|
|
34454
|
-
"__@toStringTag@
|
|
34483
|
+
"__@toStringTag@6635"
|
|
34455
34484
|
].some((prop)=>key === prop)) return true;
|
|
34456
34485
|
const value = input[key];
|
|
34457
34486
|
if (void 0 === value) return true;
|
|
@@ -34543,6 +34572,11 @@ export const __webpack_modules__ = {
|
|
|
34543
34572
|
expected: "(boolean | string | undefined)",
|
|
34544
34573
|
value: input.filenameHash
|
|
34545
34574
|
}),
|
|
34575
|
+
void 0 === input.inlineScripts || "boolean" == typeof input.inlineScripts || _report(_exceptionable, {
|
|
34576
|
+
path: _path + ".inlineScripts",
|
|
34577
|
+
expected: "(boolean | undefined)",
|
|
34578
|
+
value: input.inlineScripts
|
|
34579
|
+
}),
|
|
34546
34580
|
void 0 === input.legalComments || "none" === input.legalComments || "inline" === input.legalComments || "linked" === input.legalComments || _report(_exceptionable, {
|
|
34547
34581
|
path: _path + ".legalComments",
|
|
34548
34582
|
expected: "(\"inline\" | \"linked\" | \"none\" | undefined)",
|
|
@@ -34584,6 +34618,7 @@ export const __webpack_modules__ = {
|
|
|
34584
34618
|
"distPath",
|
|
34585
34619
|
"filename",
|
|
34586
34620
|
"filenameHash",
|
|
34621
|
+
"inlineScripts",
|
|
34587
34622
|
"legalComments",
|
|
34588
34623
|
"minify",
|
|
34589
34624
|
"sourceMap"
|
|
@@ -37150,7 +37185,7 @@ export const __webpack_modules__ = {
|
|
|
37150
37185
|
});
|
|
37151
37186
|
})();
|
|
37152
37187
|
const _vu3 = (input, _path, _exceptionable = true)=>(()=>{
|
|
37153
|
-
if (void 0 !== input["__@toStringTag@
|
|
37188
|
+
if (void 0 !== input["__@toStringTag@6635"]) return _vo155(input, _path, _exceptionable);
|
|
37154
37189
|
if (void 0 !== input.pem) return _vo156(input, _path, _exceptionable);
|
|
37155
37190
|
return _report(_exceptionable, {
|
|
37156
37191
|
path: _path,
|
|
@@ -37159,7 +37194,7 @@ export const __webpack_modules__ = {
|
|
|
37159
37194
|
});
|
|
37160
37195
|
})();
|
|
37161
37196
|
const _vu4 = (input, _path, _exceptionable = true)=>(()=>{
|
|
37162
|
-
if (void 0 !== input["__@toStringTag@
|
|
37197
|
+
if (void 0 !== input["__@toStringTag@6635"]) return _vo155(input, _path, _exceptionable);
|
|
37163
37198
|
if (void 0 !== input.buf) return _vo157(input, _path, _exceptionable);
|
|
37164
37199
|
return _report(_exceptionable, {
|
|
37165
37200
|
path: _path,
|
|
@@ -37169,7 +37204,7 @@ export const __webpack_modules__ = {
|
|
|
37169
37204
|
})();
|
|
37170
37205
|
const _vu5 = (input, _path, _exceptionable = true)=>(()=>{
|
|
37171
37206
|
if (void 0 !== input.name) return _vo404(input, _path, _exceptionable);
|
|
37172
|
-
if (void 0 !== input["__@toStringTag@
|
|
37207
|
+
if (void 0 !== input["__@toStringTag@6635"]) return _vo405(input, _path, _exceptionable);
|
|
37173
37208
|
return _report(_exceptionable, {
|
|
37174
37209
|
path: _path,
|
|
37175
37210
|
expected: "(LooseRsbuildPlugin | RsbuildPlugins | LooseRsbuildPlugin | Falsy)",
|
package/dist/src_version_ts.js
CHANGED
|
@@ -10,7 +10,7 @@ export const __webpack_modules__ = {
|
|
|
10
10
|
});
|
|
11
11
|
var core_ = __webpack_require__("@rsbuild/core");
|
|
12
12
|
var package_namespaceObject = {
|
|
13
|
-
i8: "0.9.
|
|
13
|
+
i8: "0.9.7"
|
|
14
14
|
};
|
|
15
15
|
const version = package_namespaceObject.i8;
|
|
16
16
|
const rspackVersion = core_.rspack.rspackVersion;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/rspeedy",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.7",
|
|
4
4
|
"description": "A webpack/rspack-based frontend toolchain for Lynx",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -46,18 +46,18 @@
|
|
|
46
46
|
"README.md"
|
|
47
47
|
],
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@rsbuild/core": "1.3.
|
|
49
|
+
"@rsbuild/core": "1.3.21",
|
|
50
50
|
"@rsbuild/plugin-css-minimizer": "1.0.2",
|
|
51
51
|
"@rsdoctor/rspack-plugin": "1.1.2",
|
|
52
|
-
"@lynx-js/chunk-loading-webpack-plugin": "^0.
|
|
52
|
+
"@lynx-js/chunk-loading-webpack-plugin": "^0.3.0",
|
|
53
53
|
"@lynx-js/webpack-dev-transport": "^0.1.3",
|
|
54
54
|
"@lynx-js/websocket": "^0.0.4"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@microsoft/api-extractor": "7.52.8",
|
|
58
58
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
59
|
-
"@rsbuild/webpack": "1.3.
|
|
60
|
-
"@samchon/openapi": "4.3.
|
|
59
|
+
"@rsbuild/webpack": "1.3.2",
|
|
60
|
+
"@samchon/openapi": "4.3.2",
|
|
61
61
|
"chokidar": "^4.0.3",
|
|
62
62
|
"commander": "^13.1.0",
|
|
63
63
|
"eventemitter3": "^5.0.1",
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
"tiny-invariant": "^1.3.3",
|
|
70
70
|
"ts-blank-space": "^0.6.1",
|
|
71
71
|
"type-fest": "^4.41.0",
|
|
72
|
-
"typia": "9.3.
|
|
73
|
-
"typia-rspack-plugin": "2.0
|
|
74
|
-
"vitest": "^3.1.
|
|
75
|
-
"webpack": "^5.99.
|
|
72
|
+
"typia": "9.3.1",
|
|
73
|
+
"typia-rspack-plugin": "2.1.0",
|
|
74
|
+
"vitest": "^3.1.4",
|
|
75
|
+
"webpack": "^5.99.9",
|
|
76
76
|
"@lynx-js/vitest-setup": "0.0.0"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|