fix: add a trivial change to trigger semantic release (#15127)

This commit is contained in:
Lachlan Miller
2021-02-18 03:12:24 +10:00
committed by GitHub
parent 39690cac91
commit fb7540e99d

View File

@@ -14,13 +14,6 @@ export interface DevServerOptions {
devServerEvents: EventEmitter
}
export interface StartDevServer {
/* this is the Cypress options object */
options: DevServerOptions
/* support passing a path to the user's webpack config */
webpackConfig?: Record<string, any>
}
type DoneCallback = () => unknown
export interface ResolvedDevServerConfig {
@@ -28,6 +21,13 @@ export interface ResolvedDevServerConfig {
close: (done?: DoneCallback) => void
}
export interface StartDevServer {
/* this is the Cypress options object */
options: DevServerOptions
/* support passing a path to the user's webpack config */
webpackConfig?: Record<string, any>
}
export async function startDevServer (startDevServerArgs: StartDevServer) {
const webpackDevServer = await createDevServer(startDevServerArgs)