Skip to content

Commit

Permalink
chore: add reporter webpack to gulp watch script (#22386)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyrohrbough authored Jun 23, 2022
1 parent 0fccc45 commit 2f8475c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/gulp/gulpfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { makePathMap } from './utils/makePathMap'
import { makePackage } from './tasks/gulpMakePackage'
import { exitAfterAll } from './tasks/gulpRegistry'
import { execSync } from 'child_process'
import { webpackRunner, webpackRunnerCT } from './tasks/gulpWebpack'
import { webpackReporter, webpackRunner, webpackRunnerCT } from './tasks/gulpWebpack'
import { e2eTestScaffold, e2eTestScaffoldWatch } from './tasks/gulpE2ETestScaffold'
import dedent from 'dedent'

Expand Down Expand Up @@ -58,6 +58,7 @@ gulp.task(
gulp.task(
'dev:watch',
gulp.parallel(
webpackReporter,
webpackRunner,
webpackRunnerCT,
gulp.series(
Expand Down Expand Up @@ -129,7 +130,6 @@ gulp.task('buildProd',
viteBuildApp,
viteBuildLaunchpad,
),

))

gulp.task(
Expand Down
8 changes: 8 additions & 0 deletions scripts/gulp/tasks/gulpWebpack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ import semver from 'semver'

type Env = typeof process.env

export function webpackReporter () {
return runWebpack({
cwd: monorepoPaths.pkgReporter,
prefix: 'webpack:reporter',
args: ['-w'],
})
}

export function webpackRunnerCT () {
return runWebpack({
cwd: monorepoPaths.pkgRunnerCt,
Expand Down

5 comments on commit 2f8475c

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 2f8475c Jun 23, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.3.0/linux-x64/develop-2f8475cbc0780e463251785c71fa19645f1b2706/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 2f8475c Jun 23, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux arm64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.3.0/linux-arm64/develop-2f8475cbc0780e463251785c71fa19645f1b2706/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 2f8475c Jun 23, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin arm64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.3.0/darwin-arm64/develop-2f8475cbc0780e463251785c71fa19645f1b2706/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 2f8475c Jun 23, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.3.0/darwin-x64/develop-2f8475cbc0780e463251785c71fa19645f1b2706/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on 2f8475c Jun 23, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the win32 x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.3.0/win32-x64/develop-2f8475cbc0780e463251785c71fa19645f1b2706/cypress.tgz

Please sign in to comment.