mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-31 20:09:01 -06:00
fix: add a trivial change to trigger semantic release (#15127)
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user