File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,8 @@ function stripRushStageNumbers(result: string): string {
185
185
* so we purge as much of the gulp output as we can
186
186
*/
187
187
function sanitizeUnimportantGulpOutput ( result : string ) : string {
188
- return result . replace ( / ^ .* ( \] ( S t a r t i n g ) | ( F i n i s h e d ) ) .* $ / gm, "" ) // task start/end messages (nondeterministic order)
188
+ return result . replace ( / ^ .* ( \] ( S t a r t i n g ) | ( F i n i s h e d ) ) .* $ / gm, "" ) // "gulp" task start/end messages (nondeterministic order)
189
+ . replace ( / ^ .* ( \] . ( f i n i s h e d ) | ( s t a r t e d ) ) .* $ / gm, "" ) // "just" task start/end messages (nondeterministic order)
189
190
. replace ( / ^ .* \] R e s p a w n e d t o P I D : \d + .* $ / gm, "" ) // PID of child is OS and system-load dependent (likely stableish in a container but still dangerous)
190
191
. replace ( / \n + / g, "\n" ) ;
191
192
}
You can’t perform that action at this time.
0 commit comments