fix punycode2 (#20154)

This commit is contained in:
Jacob Richman 2026-02-24 01:43:22 -08:00 committed by GitHub
parent d143a83d5b
commit 6676546a4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env node
#!/usr/bin/env -S node --no-warnings=DEP0040
/**
* @license

View file

@ -1,4 +1,4 @@
#!/usr/bin/env node
#!/usr/bin/env -S node --no-warnings=DEP0040
/**
* @license

View file

@ -32,7 +32,7 @@ execSync('node ./scripts/check-build-status.js', {
cwd: root,
});
const nodeArgs = [];
const nodeArgs = ['--no-warnings=DEP0040'];
let sandboxCommand = undefined;
try {
sandboxCommand = execSync('node scripts/sandbox_command.js', {