Skip to content

Commit fb7540e

Browse files
authored
fix: add a trivial change to trigger semantic release (#15127)
1 parent 39690ca commit fb7540e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

npm/webpack-dev-server/src/index.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ export interface DevServerOptions {
1414
devServerEvents: EventEmitter
1515
}
1616

17-
export interface StartDevServer {
18-
/* this is the Cypress options object */
19-
options: DevServerOptions
20-
/* support passing a path to the user's webpack config */
21-
webpackConfig?: Record<string, any>
22-
}
23-
2417
type DoneCallback = () => unknown
2518

2619
export interface ResolvedDevServerConfig {
2720
port: number
2821
close: (done?: DoneCallback) => void
2922
}
3023

24+
export interface StartDevServer {
25+
/* this is the Cypress options object */
26+
options: DevServerOptions
27+
/* support passing a path to the user's webpack config */
28+
webpackConfig?: Record<string, any>
29+
}
30+
3131
export async function startDevServer (startDevServerArgs: StartDevServer) {
3232
const webpackDevServer = await createDevServer(startDevServerArgs)
3333

0 commit comments

Comments
 (0)