From 5882775e2d319ab60265db8bef67b6dd3e8b85dd Mon Sep 17 00:00:00 2001 From: Bill Glesias Date: Mon, 14 Aug 2023 11:33:07 -0400 Subject: [PATCH] chore: fix gulp watch scripts using webpack as stdout is looking for webpack 4 based output and now needs to be updated to 5 --- scripts/gulp/tasks/gulpWebpack.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/gulp/tasks/gulpWebpack.ts b/scripts/gulp/tasks/gulpWebpack.ts index 31bef29a9f5a..2346e90f6430 100644 --- a/scripts/gulp/tasks/gulpWebpack.ts +++ b/scripts/gulp/tasks/gulpWebpack.ts @@ -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({})