File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import { makePathMap } from './utils/makePathMap'
1717import { makePackage } from './tasks/gulpMakePackage'
1818import { exitAfterAll } from './tasks/gulpRegistry'
1919import { execSync } from 'child_process'
20- import { webpackRunner } from './tasks/gulpWebpack'
20+ import { webpackRunner , webpackRunnerCT } from './tasks/gulpWebpack'
2121import { e2eTestScaffold , e2eTestScaffoldWatch } from './tasks/gulpE2ETestScaffold'
2222import dedent from 'dedent'
2323
@@ -59,6 +59,7 @@ gulp.task(
5959 'dev:watch' ,
6060 gulp . parallel (
6161 webpackRunner ,
62+ webpackRunnerCT ,
6263 gulp . series (
6364 makePathMap ,
6465 // Before dev, fetch the latest "remote" schema from the Cypress dashboard
Original file line number Diff line number Diff line change @@ -7,9 +7,17 @@ import semver from 'semver'
77
88type Env = typeof process . env
99
10- export function webpackRunner ( ) {
10+ export function webpackRunnerCT ( ) {
1111 return runWebpack ( {
1212 cwd : monorepoPaths . pkgRunnerCt ,
13+ prefix : 'webpack:runner:ct' ,
14+ args : [ '-w' ] ,
15+ } )
16+ }
17+
18+ export function webpackRunner ( ) {
19+ return runWebpack ( {
20+ cwd : monorepoPaths . pkgRunner ,
1321 prefix : 'webpack:runner' ,
1422 args : [ '-w' ] ,
1523 } )
You can’t perform that action at this time.
0 commit comments