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
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', {