Skip to content

Commit

Permalink
fix: add a trivial change to trigger semantic release (#15127)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiller1990 committed Feb 17, 2021
1 parent 39690ca commit fb7540e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions npm/webpack-dev-server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ 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 {
port: number
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)

Expand Down

0 comments on commit fb7540e

Please sign in to comment.