@rspack/dev-server 0.0.21 → 0.0.22
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 +19 -0
- package/LICENSE +1 -1
- package/dist/config.d.ts +19 -14
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +0 -52
- package/dist/config.js.map +1 -1
- package/dist/server.d.ts +14 -41
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +308 -257
- package/dist/server.js.map +1 -1
- package/jest.config.js +3 -1
- package/package.json +10 -9
- package/src/config.ts +21 -67
- package/src/server.ts +350 -311
- package/tests/__snapshots__/normalizeOptions.test.ts.snap +223 -24
- package/tests/e2e/hot-reaload.test.ts +35 -39
- package/tests/e2e-fixtures/react/node_modules/react/LICENSE +21 -0
- package/tests/e2e-fixtures/react/node_modules/react/README.md +37 -0
- package/tests/e2e-fixtures/react/node_modules/react/cjs/react-jsx-dev-runtime.development.js +1296 -0
- package/tests/e2e-fixtures/react/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +10 -0
- package/tests/e2e-fixtures/react/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +10 -0
- package/tests/e2e-fixtures/react/node_modules/react/cjs/react-jsx-runtime.development.js +1314 -0
- package/tests/e2e-fixtures/react/node_modules/react/cjs/react-jsx-runtime.production.min.js +11 -0
- package/tests/e2e-fixtures/react/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +11 -0
- package/tests/e2e-fixtures/react/node_modules/react/cjs/react.development.js +2739 -0
- package/tests/e2e-fixtures/react/node_modules/react/cjs/react.production.min.js +26 -0
- package/tests/e2e-fixtures/react/node_modules/react/cjs/react.shared-subset.development.js +20 -0
- package/tests/e2e-fixtures/react/node_modules/react/cjs/react.shared-subset.production.min.js +10 -0
- package/tests/e2e-fixtures/react/node_modules/react/index.js +7 -0
- package/tests/e2e-fixtures/react/node_modules/react/jsx-dev-runtime.js +7 -0
- package/tests/e2e-fixtures/react/node_modules/react/jsx-runtime.js +7 -0
- package/tests/e2e-fixtures/react/node_modules/react/package.json +47 -0
- package/tests/e2e-fixtures/react/node_modules/react/react.shared-subset.js +7 -0
- package/tests/e2e-fixtures/react/node_modules/react/umd/react.development.js +3342 -0
- package/tests/e2e-fixtures/react/node_modules/react/umd/react.production.min.js +31 -0
- package/tests/e2e-fixtures/react/node_modules/react/umd/react.profiling.min.js +31 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/LICENSE +21 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/README.md +60 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +7018 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.min.js +93 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js +7078 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.min.js +101 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom-server.browser.development.js +7003 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +96 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom-server.node.development.js +7059 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +102 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom-test-utils.development.js +1741 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom-test-utils.production.min.js +40 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom.development.js +29868 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom.production.min.js +323 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/cjs/react-dom.profiling.min.js +367 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/client.js +25 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/index.js +38 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/package.json +62 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/profiling.js +38 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/server.browser.js +17 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/server.js +3 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/server.node.js +17 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/test-utils.js +7 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/umd/react-dom-server-legacy.browser.development.js +7015 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/umd/react-dom-server-legacy.browser.production.min.js +75 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/umd/react-dom-server.browser.development.js +7000 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/umd/react-dom-server.browser.production.min.js +76 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/umd/react-dom-test-utils.development.js +1737 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/umd/react-dom-test-utils.production.min.js +33 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/umd/react-dom.development.js +29869 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/umd/react-dom.production.min.js +267 -0
- package/tests/e2e-fixtures/react/node_modules/react-dom/umd/react-dom.profiling.min.js +285 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/LICENSE +21 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/README.md +9 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +700 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +20 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +207 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +14 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/cjs/scheduler.development.js +634 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/cjs/scheduler.production.min.js +19 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/index.js +7 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/package.json +36 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +699 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +19 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/umd/scheduler.development.js +152 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/umd/scheduler.production.min.js +146 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/umd/scheduler.profiling.min.js +146 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/unstable_mock.js +7 -0
- package/tests/e2e-fixtures/react/node_modules/scheduler/unstable_post_task.js +7 -0
- package/tests/e2e-fixtures/react/package.json +2 -0
- package/tests/e2e-fixtures/react/webpack.config.js +6 -2
- package/tests/helpers/emitFile.ts +58 -4
- package/tests/normalizeOptions.test.ts +58 -16
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/logger.d.ts +0 -7
- package/dist/logger.d.ts.map +0 -1
- package/dist/logger.js +0 -28
- package/dist/logger.js.map +0 -1
- package/dist/ws.d.ts +0 -13
- package/dist/ws.d.ts.map +0 -1
- package/dist/ws.js +0 -12
- package/dist/ws.js.map +0 -1
- package/src/logger.ts +0 -30
- package/src/ws.ts +0 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# rspack-dev-server
|
|
2
2
|
|
|
3
|
+
## 0.0.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 59edc2cb4: fix watch options
|
|
8
|
+
- ac02a096e: fix: getRspackMemoryAssets failed to get index.html when request path is /
|
|
9
|
+
feat: extends webpack-dev-server
|
|
10
|
+
- 290bf7fb5: feat: add devServer.historyApiFallback options
|
|
11
|
+
- d88ffa666: feat: support devServer.client.webSocketUrl
|
|
12
|
+
- Updated dependencies [ce31cd029]
|
|
13
|
+
- Updated dependencies [59edc2cb4]
|
|
14
|
+
- Updated dependencies [ac02a096e]
|
|
15
|
+
- Updated dependencies [290bf7fb5]
|
|
16
|
+
- Updated dependencies [d88ffa666]
|
|
17
|
+
- Updated dependencies [0269ff40d]
|
|
18
|
+
- @rspack/dev-middleware@0.0.22
|
|
19
|
+
- @rspack/dev-client@0.0.22
|
|
20
|
+
- @rspack/dev-server@0.0.22
|
|
21
|
+
|
|
3
22
|
## 0.0.21
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/LICENSE
CHANGED
package/dist/config.d.ts
CHANGED
|
@@ -1,19 +1,24 @@
|
|
|
1
|
-
import
|
|
2
|
-
import type {
|
|
3
|
-
|
|
4
|
-
export interface
|
|
5
|
-
host: string;
|
|
1
|
+
import WebpackDevServer from "webpack-dev-server";
|
|
2
|
+
import type { DevServer } from "@rspack/core";
|
|
3
|
+
export type { DevServer };
|
|
4
|
+
export interface ResolvedDevServer extends DevServer {
|
|
6
5
|
port: number | string;
|
|
7
|
-
static:
|
|
8
|
-
|
|
9
|
-
watch: false | WatchOptions;
|
|
10
|
-
};
|
|
11
|
-
devMiddleware: {};
|
|
6
|
+
static: false | Array<WebpackDevServer.NormalizedStatic>;
|
|
7
|
+
devMiddleware: DevServer["devMiddleware"];
|
|
12
8
|
hot: boolean;
|
|
13
|
-
open:
|
|
9
|
+
open: WebpackDevServer.Open[];
|
|
10
|
+
magicHtml: boolean;
|
|
14
11
|
liveReload: boolean;
|
|
15
|
-
webSocketServer: false |
|
|
16
|
-
proxy:
|
|
12
|
+
webSocketServer: false | WebpackDevServer.WebSocketServerConfiguration;
|
|
13
|
+
proxy: WebpackDevServer.ProxyConfigArray;
|
|
14
|
+
client: WebpackDevServer.ClientConfiguration;
|
|
15
|
+
allowedHosts: "auto" | string[] | "all";
|
|
16
|
+
bonjour: false | Record<string, never> | WebpackDevServer.BonjourOptions;
|
|
17
|
+
compress: boolean;
|
|
18
|
+
historyApiFallback: false | WebpackDevServer.ConnectHistoryApiFallbackOptions;
|
|
19
|
+
server: WebpackDevServer.ServerConfiguration;
|
|
20
|
+
ipc: string | undefined;
|
|
21
|
+
setupExitSignals: boolean;
|
|
22
|
+
watchFiles: WebpackDevServer.WatchFiles[];
|
|
17
23
|
}
|
|
18
|
-
export declare function resolveDevOptions(devConfig: Dev, compilerOptions: RspackOptionsNormalized): ResolvedDev;
|
|
19
24
|
//# sourceMappingURL=config.d.ts.map
|
package/dist/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,MAAM,oBAAoB,CAAC;AAClD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9C,YAAY,EAAE,SAAS,EAAE,CAAC;AAE1B,MAAM,WAAW,iBAAkB,SAAQ,SAAS;IACnD,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;IACtB,MAAM,EAAE,KAAK,GAAG,KAAK,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;IACzD,aAAa,EAAE,SAAS,CAAC,eAAe,CAAC,CAAC;IAE1C,GAAG,EAAE,OAAO,CAAC;IACb,IAAI,EAAE,gBAAgB,CAAC,IAAI,EAAE,CAAC;IAC9B,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,OAAO,CAAC;IACpB,eAAe,EAAE,KAAK,GAAG,gBAAgB,CAAC,4BAA4B,CAAC;IACvE,KAAK,EAAE,gBAAgB,CAAC,gBAAgB,CAAC;IACzC,MAAM,EAAE,gBAAgB,CAAC,mBAAmB,CAAC;IAC7C,YAAY,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,KAAK,CAAC;IACxC,OAAO,EAAE,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,GAAG,gBAAgB,CAAC,cAAc,CAAC;IACzE,QAAQ,EAAE,OAAO,CAAC;IAClB,kBAAkB,EAAE,KAAK,GAAG,gBAAgB,CAAC,gCAAgC,CAAC;IAC9E,MAAM,EAAE,gBAAgB,CAAC,mBAAmB,CAAC;IAC7C,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;IACxB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,UAAU,EAAE,gBAAgB,CAAC,UAAU,EAAE,CAAC;CAC1C"}
|
package/dist/config.js
CHANGED
|
@@ -1,55 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.resolveDevOptions = void 0;
|
|
7
|
-
const path_1 = __importDefault(require("path"));
|
|
8
|
-
const core_1 = require("@rspack/core");
|
|
9
|
-
function resolveDevOptions(devConfig, compilerOptions) {
|
|
10
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
11
|
-
const open = true;
|
|
12
|
-
const proxy = devConfig.proxy;
|
|
13
|
-
const hot = (_a = devConfig.hot) !== null && _a !== void 0 ? _a : true;
|
|
14
|
-
// --- static
|
|
15
|
-
const directory = (_c = (_b = devConfig.static) === null || _b === void 0 ? void 0 : _b.directory) !== null && _c !== void 0 ? _c : path_1.default.resolve(compilerOptions.context, compilerOptions.output.path);
|
|
16
|
-
let watch = {};
|
|
17
|
-
if (((_d = devConfig.static) === null || _d === void 0 ? void 0 : _d.watch) === false) {
|
|
18
|
-
watch = false;
|
|
19
|
-
}
|
|
20
|
-
else if (((_e = devConfig.static) === null || _e === void 0 ? void 0 : _e.watch) === true) {
|
|
21
|
-
watch = (0, core_1.resolveWatchOption)({});
|
|
22
|
-
}
|
|
23
|
-
else if ((_f = devConfig.static) === null || _f === void 0 ? void 0 : _f.watch) {
|
|
24
|
-
watch = (_g = devConfig.static) === null || _g === void 0 ? void 0 : _g.watch;
|
|
25
|
-
}
|
|
26
|
-
// ---
|
|
27
|
-
const devMiddleware = (_h = devConfig.devMiddleware) !== null && _h !== void 0 ? _h : {};
|
|
28
|
-
const liveReload = (_j = devConfig.liveReload) !== null && _j !== void 0 ? _j : true;
|
|
29
|
-
let webSocketServer = {};
|
|
30
|
-
if (devConfig.webSocketServer === false) {
|
|
31
|
-
webSocketServer = false;
|
|
32
|
-
}
|
|
33
|
-
else if (devConfig.webSocketServer === true) {
|
|
34
|
-
webSocketServer = {};
|
|
35
|
-
}
|
|
36
|
-
else if (devConfig.webSocketServer) {
|
|
37
|
-
webSocketServer = devConfig.webSocketServer;
|
|
38
|
-
}
|
|
39
|
-
return {
|
|
40
|
-
host: devConfig.host,
|
|
41
|
-
port: devConfig.port ? Number(devConfig.port) : undefined,
|
|
42
|
-
static: {
|
|
43
|
-
directory,
|
|
44
|
-
watch
|
|
45
|
-
},
|
|
46
|
-
devMiddleware,
|
|
47
|
-
open,
|
|
48
|
-
hot,
|
|
49
|
-
liveReload,
|
|
50
|
-
webSocketServer,
|
|
51
|
-
proxy
|
|
52
|
-
};
|
|
53
|
-
}
|
|
54
|
-
exports.resolveDevOptions = resolveDevOptions;
|
|
55
3
|
//# sourceMappingURL=config.js.map
|
package/dist/config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":""}
|
package/dist/server.d.ts
CHANGED
|
@@ -1,55 +1,28 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
/// <reference types="node" />
|
|
3
|
-
import
|
|
4
|
-
import type { Logger } from "./logger";
|
|
3
|
+
import { Compiler, MultiCompiler } from "@rspack/core";
|
|
5
4
|
import type { Socket } from "net";
|
|
6
5
|
import type { FSWatcher, WatchOptions } from "chokidar";
|
|
7
|
-
import type { WebSocketServer, ClientConnection } from "./ws";
|
|
8
|
-
import type { Application } from "express";
|
|
9
6
|
import type { Server } from "http";
|
|
10
|
-
import
|
|
11
|
-
|
|
12
|
-
declare
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
7
|
+
import WebpackDevServer from "webpack-dev-server";
|
|
8
|
+
import type { ResolvedDevServer, DevServer } from "./config";
|
|
9
|
+
export declare class RspackDevServer extends WebpackDevServer {
|
|
10
|
+
/**
|
|
11
|
+
* resolved after `normalizedOptions`
|
|
12
|
+
*/
|
|
13
|
+
options: ResolvedDevServer;
|
|
17
14
|
staticWatchers: FSWatcher[];
|
|
18
15
|
sockets: Socket[];
|
|
19
|
-
app: Application;
|
|
20
16
|
server: Server;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
constructor(compiler: Compiler);
|
|
26
|
-
normalizeOptions(dev?: Dev): ResolvedDev;
|
|
27
|
-
rewriteCompilerOptions(): void;
|
|
28
|
-
addAdditionEntires(): void;
|
|
29
|
-
static isAbsoluteURL(URL: string): boolean;
|
|
30
|
-
static findIp(gateway: string): string | undefined;
|
|
31
|
-
static internalIP(family: "v6" | "v4"): Promise<string | undefined>;
|
|
32
|
-
static internalIPSync(family: "v6" | "v4"): Promise<string | undefined>;
|
|
33
|
-
static getHostname(hostname?: Host): Promise<string>;
|
|
34
|
-
static getFreePort(port: Port, host: string): Promise<string | number>;
|
|
35
|
-
static findCacheDir(): string;
|
|
36
|
-
private getCompilerOptions;
|
|
37
|
-
sendMessage(clients: ClientConnection[], type: string, data?: any, params?: any): void;
|
|
17
|
+
compiler: Compiler | MultiCompiler;
|
|
18
|
+
webSocketServer: WebpackDevServer.WebSocketServerImplementation | undefined;
|
|
19
|
+
constructor(options: DevServer, compiler: Compiler | MultiCompiler);
|
|
20
|
+
addAdditionEntires(compiler: Compiler): void;
|
|
38
21
|
watchFiles(watchPath: string | string[], watchOptions?: WatchOptions): void;
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
startCallback(callback?: (err?: Error) => void): void;
|
|
42
|
-
stopCallback(callback?: (err?: Error) => void): void;
|
|
43
|
-
listen(port: Port, hostname: string, fn: (err?: Error) => void): void;
|
|
44
|
-
close(callback?: (err?: Error) => void): void;
|
|
45
|
-
stop(): Promise<void>;
|
|
46
|
-
private setupApp;
|
|
47
|
-
private setupWatchStaticFiles;
|
|
22
|
+
getClientTransport(): string;
|
|
23
|
+
initialize(): Promise<void>;
|
|
48
24
|
private setupDevMiddleware;
|
|
49
|
-
private createWebsocketServer;
|
|
50
25
|
private setupMiddlewares;
|
|
51
|
-
private createServer;
|
|
52
26
|
private setupHooks;
|
|
53
27
|
}
|
|
54
|
-
export {};
|
|
55
28
|
//# sourceMappingURL=server.d.ts.map
|
package/dist/server.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":";;AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":";;AAAA,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AACvD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,KAAK,CAAC;AAClC,OAAO,KAAK,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAExD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AAEnC,OAAO,gBAAgB,MAAM,oBAAoB,CAAC;AAClD,OAAO,KAAK,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAE7D,qBAAa,eAAgB,SAAQ,gBAAgB;IACpD;;OAEG;IACH,OAAO,EAAE,iBAAiB,CAAC;IAC3B,cAAc,EAAE,SAAS,EAAE,CAAC;IAC5B,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IAER,QAAQ,EAAE,QAAQ,GAAG,aAAa,CAAC;IAC1C,eAAe,EAAE,gBAAgB,CAAC,6BAA6B,GAAG,SAAS,CAAC;gBAEhE,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,GAAG,aAAa;IAKlE,kBAAkB,CAAC,QAAQ,EAAE,QAAQ;IAgLrC,UAAU,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,EAAE,YAAY,CAAC,EAAE,YAAY,GAAG,IAAI;IAyB3E,kBAAkB,IAAI,MAAM;IAmEtB,UAAU;IAmFhB,OAAO,CAAC,kBAAkB;IAK1B,OAAO,CAAC,gBAAgB;IA2DxB,OAAO,CAAC,UAAU;CAQlB"}
|