Skip to content

Commit

Permalink
chore: fix gulp watch scripts using webpack as stdout is looking for …
Browse files Browse the repository at this point in the history
…webpack 4 based output and now needs to be updated to 5 (#27548)
  • Loading branch information
AtofStryker committed Aug 14, 2023
1 parent 6b2612b commit faf66dc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions scripts/gulp/tasks/gulpWebpack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@ export async function runWebpack (cfg: RunWebpackCfg) {
.split('\n')
.forEach((line) => {
if (
line.includes('Compiled successfully') ||
line.includes('Compiled with warnings') ||
line.includes('Failed to compile') ||
line.includes('Built at: ') ||
line.includes('webpack compiled') ||
line.includes('WARNING in') ||
line.includes('ERROR in') ||
line.includes('Live Reload listening')
) {
dfd.resolve({})
Expand Down

4 comments on commit faf66dc

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on faf66dc Aug 14, 2023

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 build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.17.4/darwin-arm64/develop-faf66dc737477c47732ac191378af972f44462c7/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on faf66dc Aug 14, 2023

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 build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.17.4/linux-arm64/develop-faf66dc737477c47732ac191378af972f44462c7/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on faf66dc Aug 14, 2023

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 build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.17.4/linux-x64/develop-faf66dc737477c47732ac191378af972f44462c7/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on faf66dc Aug 14, 2023

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 build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/12.17.4/win32-x64/develop-faf66dc737477c47732ac191378af972f44462c7/cypress.tgz

Please sign in to comment.