Skip to content

Commit

Permalink
add patch
Browse files Browse the repository at this point in the history
  • Loading branch information
ahabhgk committed Apr 16, 2024
1 parent e7999a6 commit a2d1e40
Show file tree
Hide file tree
Showing 6 changed files with 6,227 additions and 5 deletions.
39 changes: 39 additions & 0 deletions packages/rspack-dev-server/temp/api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## API Report File for "@rspack/dev-server"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts

/// <reference types="node" />

import { Compiler } from '@rspack/core';
import { DevServer as Configuration } from '@rspack/core';
import type { FSWatcher } from 'chokidar';
import { MultiCompiler } from '@rspack/core';
import type { Server } from 'http';
import type { Socket } from 'net';
import WebpackDevServer from 'webpack-dev-server';

export { Configuration }

// @public (undocumented)
export class RspackDevServer extends WebpackDevServer {
constructor(options: Configuration, compiler: Compiler | MultiCompiler);
compiler: Compiler | MultiCompiler;
// (undocumented)
initialize(): Promise<void>;
// Warning: (ae-forgotten-export) The symbol "ResolvedDevServer" needs to be exported by the entry point index.d.ts
options: ResolvedDevServer;
// (undocumented)
server: Server;
// (undocumented)
sockets: Socket[];
// (undocumented)
staticWatchers: FSWatcher[];
// (undocumented)
webSocketServer: WebpackDevServer.WebSocketServerImplementation | undefined;
}

// (No @packageDocumentation comment for this package)

```
17 changes: 17 additions & 0 deletions packages/rspack-plugin-react-refresh/temp/api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## API Report File for "@rspack/plugin-react-refresh"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts

// @public (undocumented)
export type PluginOptions = {
include?: string | RegExp | (string | RegExp)[] | null;
exclude?: string | RegExp | (string | RegExp)[] | null;
library?: string;
forceEnable?: boolean;
};

// (No @packageDocumentation comment for this package)

```
Loading

0 comments on commit a2d1e40

Please sign in to comment.