File tree 2 files changed +11
-2
lines changed
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'
17
17
import { makePackage } from './tasks/gulpMakePackage'
18
18
import { exitAfterAll } from './tasks/gulpRegistry'
19
19
import { execSync } from 'child_process'
20
- import { webpackRunner } from './tasks/gulpWebpack'
20
+ import { webpackRunner , webpackRunnerCT } from './tasks/gulpWebpack'
21
21
import { e2eTestScaffold , e2eTestScaffoldWatch } from './tasks/gulpE2ETestScaffold'
22
22
import dedent from 'dedent'
23
23
@@ -59,6 +59,7 @@ gulp.task(
59
59
'dev:watch' ,
60
60
gulp . parallel (
61
61
webpackRunner ,
62
+ webpackRunnerCT ,
62
63
gulp . series (
63
64
makePathMap ,
64
65
// 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'
7
7
8
8
type Env = typeof process . env
9
9
10
- export function webpackRunner ( ) {
10
+ export function webpackRunnerCT ( ) {
11
11
return runWebpack ( {
12
12
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 ,
13
21
prefix : 'webpack:runner' ,
14
22
args : [ '-w' ] ,
15
23
} )
You can’t perform that action at this time.
0 commit comments