File tree 1 file changed +0
-15
lines changed
1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -309,21 +309,6 @@ const normalizeStderr = (stderr) => {
309
309
normalizedStderr = normalizedStderr . join ( "\n" ) ;
310
310
}
311
311
312
- // TODO remove me after drop old Node.js versions and update deps
313
- // Suppress warnings for Node.js version >= v22
314
- // [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
315
- if ( process . version . startsWith ( "v22" ) ) {
316
- normalizedStderr = normalizedStderr
317
- . split ( "\n" )
318
- . filter ( ( line ) => {
319
- return (
320
- ! line . includes ( "DeprecationWarning: The `punycode` module is deprecated." ) &&
321
- ! line . includes ( "Use `node --trace-deprecation ...`" )
322
- ) ;
323
- } )
324
- . join ( "\n" ) ;
325
- }
326
-
327
312
// the warning below is causing CI failure on some jobs
328
313
if ( / G r a c e f u l l y s h u t t i n g d o w n / . test ( stderr ) ) {
329
314
normalizedStderr = normalizedStderr . replace (
You can’t perform that action at this time.
0 commit comments