chore: suppress remaining deprecation warnings

This commit is contained in:
Peter Steinberger
2026-01-24 11:16:41 +00:00
parent dbf139d14e
commit 4a9123d415
2 changed files with 15 additions and 1 deletions

View File

@@ -10,6 +10,9 @@ function shouldIgnoreWarning(warning: Warning): boolean {
if (warning.code === "DEP0040" && warning.message?.includes("punycode")) {
return true;
}
if (warning.code === "DEP0060" && warning.message?.includes("util._extend")) {
return true;
}
if (
warning.name === "ExperimentalWarning" &&
warning.message?.includes("SQLite is an experimental feature")