@rsbuild/core 2.0.0-rc.4 → 2.0.1

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.
Files changed (33) hide show
  1. package/compiled/css-loader/index.js +2 -2
  2. package/compiled/html-rspack-plugin/index.js +14 -14
  3. package/compiled/http-proxy-middleware/index.d.ts +7 -12
  4. package/compiled/http-proxy-middleware/package.json +1 -1
  5. package/compiled/postcss/index.js +1 -1
  6. package/compiled/postcss/package.json +1 -1
  7. package/compiled/postcss-loader/index.js +6 -6
  8. package/dist/753.js +41 -118
  9. package/dist/http-proxy-middleware.js +30 -7
  10. package/dist/launch-editor-middleware.js +1 -1
  11. package/dist/manifest-plugin.js +6 -6
  12. package/dist/memfs.js +96 -96
  13. package/dist-types/cli/init.d.ts +1 -1
  14. package/dist-types/configChain.d.ts +60 -60
  15. package/dist-types/helpers/format.d.ts +1 -1
  16. package/dist-types/helpers/index.d.ts +1 -1
  17. package/dist-types/helpers/version.d.ts +1 -1
  18. package/dist-types/initConfigs.d.ts +2 -2
  19. package/dist-types/initPlugins.d.ts +1 -1
  20. package/dist-types/inspectConfig.d.ts +1 -1
  21. package/dist-types/loadConfig.d.ts +1 -1
  22. package/dist-types/loadEnv.d.ts +1 -1
  23. package/dist-types/logger.d.ts +1 -1
  24. package/dist-types/pluginManager.d.ts +1 -1
  25. package/dist-types/restart.d.ts +1 -1
  26. package/dist-types/rspack-plugins/resource-hints/doesChunkBelongToHtml.d.ts +1 -1
  27. package/dist-types/rspack-plugins/resource-hints/getResourceType.d.ts +1 -1
  28. package/dist-types/rspackConfig.d.ts +1 -1
  29. package/dist-types/server/cliShortcuts.d.ts +1 -1
  30. package/dist-types/server/gzipMiddleware.d.ts +1 -1
  31. package/dist-types/server/helper.d.ts +2 -1
  32. package/dist-types/server/open.d.ts +1 -1
  33. package/package.json +8 -8
@@ -1,6 +1,6 @@
1
1
  import type { RsbuildInstance } from '../types';
2
2
  import type { CommonOptions } from './commands';
3
- export declare function init({ cliOptions, isRestart, isBuildWatch, }: {
3
+ export declare function init({ cliOptions, isRestart, isBuildWatch }: {
4
4
  cliOptions?: CommonOptions;
5
5
  isRestart?: boolean;
6
6
  isBuildWatch?: boolean;
@@ -5,129 +5,129 @@ export declare const CHAIN_ID: {
5
5
  /** Predefined rules */
6
6
  readonly RULE: {
7
7
  /** Rule for .mjs */
8
- readonly MJS: "mjs";
8
+ readonly MJS: 'mjs';
9
9
  /** Rule for fonts */
10
- readonly FONT: "font";
10
+ readonly FONT: 'font';
11
11
  /** Rule for JSON */
12
- readonly JSON: "json";
12
+ readonly JSON: 'json';
13
13
  /** Rule for images */
14
- readonly IMAGE: "image";
14
+ readonly IMAGE: 'image';
15
15
  /** Rule for media */
16
- readonly MEDIA: "media";
16
+ readonly MEDIA: 'media';
17
17
  /** Rule for additional assets */
18
- readonly ADDITIONAL_ASSETS: "additional-assets";
18
+ readonly ADDITIONAL_ASSETS: 'additional-assets';
19
19
  /** Rule for JS */
20
- readonly JS: "js";
20
+ readonly JS: 'js';
21
21
  /** Rule for data uri encoded javascript */
22
- readonly JS_DATA_URI: "js-data-uri";
22
+ readonly JS_DATA_URI: 'js-data-uri';
23
23
  /** Rule for CSS */
24
- readonly CSS: "css";
24
+ readonly CSS: 'css';
25
25
  /** Rule for Less */
26
- readonly LESS: "less";
26
+ readonly LESS: 'less';
27
27
  /** Rule for Sass */
28
- readonly SASS: "sass";
28
+ readonly SASS: 'sass';
29
29
  /** Rule for stylus */
30
- readonly STYLUS: "stylus";
30
+ readonly STYLUS: 'stylus';
31
31
  /** Rule for svg */
32
- readonly SVG: "svg";
32
+ readonly SVG: 'svg';
33
33
  /** Rule for Vue */
34
- readonly VUE: "vue";
34
+ readonly VUE: 'vue';
35
35
  /** Rule for wasm */
36
- readonly WASM: "wasm";
36
+ readonly WASM: 'wasm';
37
37
  /** Rule for svelte */
38
- readonly SVELTE: "svelte";
38
+ readonly SVELTE: 'svelte';
39
39
  };
40
40
  /** Predefined rule groups */
41
41
  readonly ONE_OF: {
42
42
  /** JS oneOf rules */
43
- readonly JS_MAIN: "js";
44
- readonly JS_RAW: "js-raw";
43
+ readonly JS_MAIN: 'js';
44
+ readonly JS_RAW: 'js-raw';
45
45
  /** CSS oneOf rules */
46
- readonly CSS_MAIN: "css";
47
- readonly CSS_RAW: "css-raw";
48
- readonly CSS_INLINE: "css-inline";
46
+ readonly CSS_MAIN: 'css';
47
+ readonly CSS_RAW: 'css-raw';
48
+ readonly CSS_INLINE: 'css-inline';
49
49
  /** SVG oneOf rules */
50
- readonly SVG: "svg";
51
- readonly SVG_RAW: "svg-asset-raw";
52
- readonly SVG_URL: "svg-asset-url";
53
- readonly SVG_ASSET: "svg-asset";
54
- readonly SVG_REACT: "svg-react";
55
- readonly SVG_INLINE: "svg-asset-inline";
50
+ readonly SVG: 'svg';
51
+ readonly SVG_RAW: 'svg-asset-raw';
52
+ readonly SVG_URL: 'svg-asset-url';
53
+ readonly SVG_ASSET: 'svg-asset';
54
+ readonly SVG_REACT: 'svg-react';
55
+ readonly SVG_INLINE: 'svg-asset-inline';
56
56
  };
57
57
  /** Predefined loaders */
58
58
  readonly USE: {
59
59
  /** ts-loader */
60
- readonly TS: "ts";
60
+ readonly TS: 'ts';
61
61
  /** css-loader */
62
- readonly CSS: "css";
62
+ readonly CSS: 'css';
63
63
  /** sass-loader */
64
- readonly SASS: "sass";
64
+ readonly SASS: 'sass';
65
65
  /** less-loader */
66
- readonly LESS: "less";
66
+ readonly LESS: 'less';
67
67
  /** stylus-loader */
68
- readonly STYLUS: "stylus";
68
+ readonly STYLUS: 'stylus';
69
69
  /** url-loader */
70
- readonly URL: "url";
70
+ readonly URL: 'url';
71
71
  /** vue-loader */
72
- readonly VUE: "vue";
72
+ readonly VUE: 'vue';
73
73
  /** swc-loader */
74
- readonly SWC: "swc";
74
+ readonly SWC: 'swc';
75
75
  /** svgr */
76
- readonly SVGR: "svgr";
76
+ readonly SVGR: 'svgr';
77
77
  /** babel-loader */
78
- readonly BABEL: "babel";
78
+ readonly BABEL: 'babel';
79
79
  /** style-loader */
80
- readonly STYLE: "style-loader";
80
+ readonly STYLE: 'style-loader';
81
81
  /** svelte-loader */
82
- readonly SVELTE: "svelte";
82
+ readonly SVELTE: 'svelte';
83
83
  /** postcss-loader */
84
- readonly POSTCSS: "postcss";
84
+ readonly POSTCSS: 'postcss';
85
85
  /** lightningcss-loader */
86
- readonly LIGHTNINGCSS: "lightningcss";
86
+ readonly LIGHTNINGCSS: 'lightningcss';
87
87
  /** ignore-css-loader */
88
- readonly IGNORE_CSS: "ignore-css";
88
+ readonly IGNORE_CSS: 'ignore-css';
89
89
  /** CssExtractRspackPlugin.loader */
90
- readonly MINI_CSS_EXTRACT: "mini-css-extract";
90
+ readonly MINI_CSS_EXTRACT: 'mini-css-extract';
91
91
  /** resolve-url-loader */
92
- readonly RESOLVE_URL: "resolve-url-loader";
92
+ readonly RESOLVE_URL: 'resolve-url-loader';
93
93
  };
94
94
  /** Predefined plugins */
95
95
  readonly PLUGIN: {
96
96
  /** HotModuleReplacementPlugin */
97
- readonly HMR: "hmr";
97
+ readonly HMR: 'hmr';
98
98
  /** CopyRspackPlugin */
99
- readonly COPY: "copy";
99
+ readonly COPY: 'copy';
100
100
  /** HtmlRspackPlugin */
101
- readonly HTML: "html";
101
+ readonly HTML: 'html';
102
102
  /** DefinePlugin */
103
- readonly DEFINE: "define";
103
+ readonly DEFINE: 'define';
104
104
  /** ProgressPlugin */
105
- readonly PROGRESS: "progress";
105
+ readonly PROGRESS: 'progress';
106
106
  /** RspackManifestPlugin */
107
- readonly MANIFEST: "rspack-manifest";
107
+ readonly MANIFEST: 'rspack-manifest';
108
108
  /** ForkTsCheckerWebpackPlugin */
109
- readonly TS_CHECKER: "ts-checker";
109
+ readonly TS_CHECKER: 'ts-checker';
110
110
  /** ModuleFederationPlugin */
111
- readonly MODULE_FEDERATION: "module-federation";
111
+ readonly MODULE_FEDERATION: 'module-federation';
112
112
  /** HtmlResourceHintsPlugin (prefetch) */
113
- readonly HTML_PREFETCH: "html-prefetch-plugin";
113
+ readonly HTML_PREFETCH: 'html-prefetch-plugin';
114
114
  /** HtmlResourceHintsPlugin (preload) */
115
- readonly HTML_PRELOAD: "html-preload-plugin";
115
+ readonly HTML_PRELOAD: 'html-preload-plugin';
116
116
  /** CssExtractRspackPlugin */
117
- readonly MINI_CSS_EXTRACT: "mini-css-extract";
117
+ readonly MINI_CSS_EXTRACT: 'mini-css-extract';
118
118
  /** VueLoaderPlugin */
119
- readonly VUE_LOADER_PLUGIN: "vue-loader-plugin";
119
+ readonly VUE_LOADER_PLUGIN: 'vue-loader-plugin';
120
120
  /** ReactFastRefreshPlugin */
121
- readonly REACT_FAST_REFRESH: "react-fast-refresh";
121
+ readonly REACT_FAST_REFRESH: 'react-fast-refresh';
122
122
  /** SubresourceIntegrityPlugin */
123
- readonly SUBRESOURCE_INTEGRITY: "subresource-integrity";
123
+ readonly SUBRESOURCE_INTEGRITY: 'subresource-integrity';
124
124
  };
125
125
  /** Predefined minimizers */
126
126
  readonly MINIMIZER: {
127
127
  /** SwcJsMinimizerRspackPlugin */
128
- readonly JS: "js";
128
+ readonly JS: 'js';
129
129
  /** LightningCssMinimizerRspackPlugin */
130
- readonly CSS: "css";
130
+ readonly CSS: 'css';
131
131
  };
132
132
  };
133
133
  export type ChainIdentifier = typeof CHAIN_ID;
@@ -1,3 +1,3 @@
1
1
  import type { StatsError } from '@rspack/core';
2
2
  import { type Logger } from '../logger';
3
- export declare function formatStatsError(stats: StatsError, root: string, level: "error" | "warning" | undefined, logger: Logger): string;
3
+ export declare function formatStatsError(stats: StatsError, root: string, level: ('error' | 'warning') | undefined, logger: Logger): string;
@@ -25,6 +25,6 @@ export declare const prettyTime: (seconds: number) => string;
25
25
  /**
26
26
  * Check if running in a TTY context
27
27
  */
28
- export declare const isTTY: (type?: "stdin" | "stdout") => boolean;
28
+ export declare const isTTY: (type?: 'stdin' | 'stdout') => boolean;
29
29
  export declare function hash(data: string): Promise<string>;
30
30
  export declare const isRspackRuntimeModule: (identifier: string) => boolean;
@@ -1,4 +1,4 @@
1
- export declare const rspackMinVersion = "1.5.0";
1
+ export declare const rspackMinVersion = "2.0.0";
2
2
  /**
3
3
  * If the application overrides the Rspack version to a lower one,
4
4
  * we should check that the Rspack version is greater than the minimum
@@ -13,7 +13,7 @@ export type InitConfigsOptions = {
13
13
  * 5. Run all the `modifyEnvironmentConfig` hooks
14
14
  * 6. Validate the final Rsbuild config
15
15
  */
16
- export declare function initRsbuildConfig({ context, pluginManager, }: Pick<InitConfigsOptions, 'context' | 'pluginManager'>): Promise<NormalizedConfig>;
17
- export declare function initConfigs({ context, pluginManager, rsbuildOptions, }: InitConfigsOptions): Promise<{
16
+ export declare function initRsbuildConfig({ context, pluginManager }: Pick<InitConfigsOptions, 'context' | 'pluginManager'>): Promise<NormalizedConfig>;
17
+ export declare function initConfigs({ context, pluginManager, rsbuildOptions }: InitConfigsOptions): Promise<{
18
18
  rspackConfigs: Rspack.Configuration[];
19
19
  }>;
@@ -1,7 +1,7 @@
1
1
  import type { Logger } from './logger';
2
2
  import type { InternalContext, NormalizedEnvironmentConfig, PluginManager, RsbuildPluginAPI } from './types';
3
3
  export declare function getHTMLPathByEntry(entryName: string, config: NormalizedEnvironmentConfig, logger: Logger): string;
4
- export declare function initPluginAPI({ context, pluginManager, }: {
4
+ export declare function initPluginAPI({ context, pluginManager }: {
5
5
  context: InternalContext;
6
6
  pluginManager: PluginManager;
7
7
  }): (environment?: string) => RsbuildPluginAPI;
@@ -1,7 +1,7 @@
1
1
  import type { InitConfigsOptions } from './initConfigs';
2
2
  import type { InspectConfigOptions, InspectConfigResult, Rspack } from './types';
3
3
  export declare function stringifyConfig(config: unknown, verbose?: boolean): string;
4
- export declare function inspectConfig({ context, pluginManager, bundlerConfigs, inspectOptions, }: InitConfigsOptions & {
4
+ export declare function inspectConfig({ context, pluginManager, bundlerConfigs, inspectOptions }: InitConfigsOptions & {
5
5
  inspectOptions?: InspectConfigOptions;
6
6
  bundlerConfigs: Rspack.Configuration[];
7
7
  }): Promise<InspectConfigResult>;
@@ -57,4 +57,4 @@ export declare function defineConfig(config: RsbuildConfigSyncFn): RsbuildConfig
57
57
  export declare function defineConfig(config: RsbuildConfigAsyncFn): RsbuildConfigAsyncFn;
58
58
  export declare function defineConfig(config: RsbuildConfigExport): RsbuildConfigExport;
59
59
  export type ConfigLoader = 'auto' | 'jiti' | 'native';
60
- export declare function loadConfig({ cwd, path, envMode, meta, loader, }?: LoadConfigOptions): Promise<LoadConfigResult>;
60
+ export declare function loadConfig({ cwd, path, envMode, meta, loader }?: LoadConfigOptions): Promise<LoadConfigResult>;
@@ -60,4 +60,4 @@ export type LoadEnvResult = {
60
60
  */
61
61
  cleanup: () => void;
62
62
  };
63
- export declare function loadEnv({ cwd, mode, prefixes, processEnv, }?: LoadEnvOptions): LoadEnvResult;
63
+ export declare function loadEnv({ cwd, mode, prefixes, processEnv }?: LoadEnvOptions): LoadEnvResult;
@@ -19,7 +19,7 @@
19
19
  */
20
20
  import { createLogger as baseCreateLogger, type Logger, logger as defaultLogger } from '../compiled/rslog';
21
21
  export declare const isDebug: () => boolean;
22
- export declare const isVerbose: (targetLogger: Pick<Logger, "level">) => boolean;
22
+ export declare const isVerbose: (targetLogger: Pick<Logger, 'level'>) => boolean;
23
23
  export declare const createLogger: (...args: Parameters<typeof baseCreateLogger>) => ReturnType<typeof baseCreateLogger>;
24
24
  export { defaultLogger };
25
25
  export type { Logger };
@@ -16,7 +16,7 @@ export declare const sortPluginsByEnforce: (plugins: PluginMeta[]) => PluginMeta
16
16
  * execution order.
17
17
  */
18
18
  export declare const sortPluginsByDependencies: (plugins: PluginMeta[]) => PluginMeta[];
19
- export declare function initPlugins({ context, pluginManager, }: {
19
+ export declare function initPlugins({ context, pluginManager }: {
20
20
  context: InternalContext;
21
21
  pluginManager: PluginManager;
22
22
  }): Promise<void>;
@@ -11,7 +11,7 @@ export declare const restartDevServer: ({ filePath, clear, logger, }: {
11
11
  clear?: boolean;
12
12
  logger: Logger;
13
13
  }) => Promise<boolean>;
14
- export declare function watchFilesForRestart({ files, rsbuild, isBuildWatch, watchOptions, }: {
14
+ export declare function watchFilesForRestart({ files, rsbuild, isBuildWatch, watchOptions }: {
15
15
  files: string[];
16
16
  rsbuild: RsbuildInstance;
17
17
  isBuildWatch: boolean;
@@ -24,5 +24,5 @@ interface DoesChunkBelongToHtmlOptions {
24
24
  pluginOptions?: ResourceHintsOptions;
25
25
  }
26
26
  export declare function recursiveChunkEntryNames(chunk: Chunk): string[];
27
- export declare function doesChunkBelongToHtml({ chunk, htmlPluginData, }: DoesChunkBelongToHtmlOptions): boolean;
27
+ export declare function doesChunkBelongToHtml({ chunk, htmlPluginData }: DoesChunkBelongToHtmlOptions): boolean;
28
28
  export {};
@@ -16,7 +16,7 @@
16
16
  * limitations under the License.
17
17
  */
18
18
  export type ResourceType = 'audio' | 'document' | 'embed' | 'fetch' | 'font' | 'image' | 'object' | 'script' | 'style' | 'track' | 'worker' | 'video';
19
- export declare function getResourceType({ href, file, }: {
19
+ export declare function getResourceType({ href, file }: {
20
20
  href: string;
21
21
  file: string;
22
22
  }): ResourceType;
@@ -1,7 +1,7 @@
1
1
  import type { EnvironmentContext, InternalContext, ModifyChainUtils, ModifyRspackConfigUtils, RsbuildTarget, Rspack } from './types';
2
2
  export declare function getConfigUtils(getCurrentConfig: () => Rspack.Configuration, chainUtils: ModifyChainUtils): ModifyRspackConfigUtils;
3
3
  export declare function getChainUtils(target: RsbuildTarget, environment: EnvironmentContext, environments: Record<string, EnvironmentContext>): ModifyChainUtils;
4
- export declare function generateRspackConfig({ target, context, environmentName, }: {
4
+ export declare function generateRspackConfig({ target, context, environmentName }: {
5
5
  target: RsbuildTarget;
6
6
  context: InternalContext;
7
7
  environmentName: string;
@@ -2,7 +2,7 @@ import type { Logger } from '../logger';
2
2
  import type { CliShortcut, NormalizedConfig } from '../types/config';
3
3
  export declare const isCliShortcutsEnabled: (config: NormalizedConfig) => boolean;
4
4
  export declare const normalizeShortcutInput: (input: string) => string;
5
- export declare function setupCliShortcuts({ help, openPage, closeServer, printUrls, restartServer, customShortcuts, logger, }: {
5
+ export declare function setupCliShortcuts({ help, openPage, closeServer, printUrls, restartServer, customShortcuts, logger }: {
6
6
  help?: boolean | string;
7
7
  openPage: () => Promise<void>;
8
8
  closeServer: () => Promise<void>;
@@ -1,2 +1,2 @@
1
1
  import type { CompressOptions, RequestHandler } from '../types';
2
- export declare function gzipMiddleware({ filter, level, }?: CompressOptions): RequestHandler;
2
+ export declare function gzipMiddleware({ filter, level }?: CompressOptions): RequestHandler;
@@ -30,7 +30,7 @@ export declare const joinUrlSegments: (s1: string, s2: string) => string;
30
30
  export declare const stripBase: (path: string, base: string) => string;
31
31
  export declare const getRoutes: (context: InternalContext) => Routes;
32
32
  export declare const formatRoutes: (entry: RsbuildEntry, base: string, distPathPrefix: string | undefined, outputStructure: OutputStructure | undefined) => Routes;
33
- export declare function printServerURLs({ urls: originalUrls, port, routes, protocol, printUrls, trailingLineBreak, originalConfig, logger, }: {
33
+ export declare function printServerURLs({ urls: originalUrls, port, routes, protocol, printUrls, fallbackPathname, trailingLineBreak, originalConfig, logger }: {
34
34
  urls: {
35
35
  url: string;
36
36
  label: string;
@@ -39,6 +39,7 @@ export declare function printServerURLs({ urls: originalUrls, port, routes, prot
39
39
  routes: Routes;
40
40
  protocol: string;
41
41
  printUrls?: PrintUrls;
42
+ fallbackPathname?: string;
42
43
  trailingLineBreak?: boolean;
43
44
  originalConfig?: Readonly<RsbuildConfig>;
44
45
  logger: Logger;
@@ -2,7 +2,7 @@ import type { Logger } from '../logger';
2
2
  import type { NormalizedConfig, Routes } from '../types';
3
3
  export declare const replacePortPlaceholder: (url: string, port: number) => string;
4
4
  export declare function resolveUrl(str: string, base: string): string;
5
- export declare function open({ port, routes, config, protocol, clearCache, logger, }: {
5
+ export declare function open({ port, routes, config, protocol, clearCache, logger }: {
6
6
  port: number;
7
7
  routes: Routes;
8
8
  config: NormalizedConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsbuild/core",
3
- "version": "2.0.0-rc.4",
3
+ "version": "2.0.1",
4
4
  "description": "The Rspack-based build tool.",
5
5
  "homepage": "https://rsbuild.rs",
6
6
  "bugs": {
@@ -36,7 +36,7 @@
36
36
  "types.d.ts"
37
37
  ],
38
38
  "dependencies": {
39
- "@rspack/core": "2.0.0-rc.3",
39
+ "@rspack/core": "^2.0.0",
40
40
  "@swc/helpers": "^0.5.21"
41
41
  },
42
42
  "peerDependencies": {
@@ -50,7 +50,7 @@
50
50
  "devDependencies": {
51
51
  "@jridgewell/remapping": "^2.3.5",
52
52
  "@jridgewell/trace-mapping": "^0.3.31",
53
- "@rslib/core": "0.21.0",
53
+ "@rslib/core": "0.21.3",
54
54
  "@types/cors": "^2.8.19",
55
55
  "@types/node": "^24.12.2",
56
56
  "@types/on-finished": "2.3.5",
@@ -63,16 +63,16 @@
63
63
  "cors": "^2.8.6",
64
64
  "css-loader": "7.1.4",
65
65
  "deepmerge": "^4.3.1",
66
- "dotenv-expand": "12.0.3",
66
+ "dotenv-expand": "13.0.0",
67
67
  "html-rspack-plugin": "6.1.8",
68
- "http-proxy-middleware": "4.0.0-beta.3",
68
+ "http-proxy-middleware": "4.0.0-beta.4",
69
69
  "jiti": "^2.6.1",
70
70
  "launch-editor-middleware": "^2.13.2",
71
- "memfs": "^4.57.1",
71
+ "memfs": "^4.57.2",
72
72
  "mrmime": "^2.0.1",
73
73
  "on-finished": "2.4.1",
74
74
  "open": "^11.0.0",
75
- "postcss": "^8.5.9",
75
+ "postcss": "^8.5.10",
76
76
  "postcss-load-config": "6.0.1",
77
77
  "postcss-loader": "8.2.1",
78
78
  "prebundle": "1.6.4",
@@ -86,7 +86,7 @@
86
86
  "style-loader": "^4.0.0",
87
87
  "supports-color": "^10.2.2",
88
88
  "tinyglobby": "^0.2.16",
89
- "typescript": "^6.0.2",
89
+ "typescript": "^6.0.3",
90
90
  "webpack-merge": "6.0.1",
91
91
  "ws": "^8.20.0"
92
92
  },