chore(release): satisfy knip for the release scripts

The release scripts spawn tar to read a packed tarball, and resolving a family
by id is the only entry point into the family list.
This commit is contained in:
imccyu
2026-08-11 00:03:15 +08:00
parent 35e2601a28
commit d4128ae57f
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -9,6 +9,7 @@
"musl-gcc",
"python3",
"sandbox-exec",
"tar",
"taskkill",
"where.exe"
],
+1 -1
View File
@@ -253,7 +253,7 @@ class VendorFamily extends ReleaseFamily {
}
/** Every release family this module owns, in workflow order. */
export function releaseFamilies(): readonly ReleaseFamily[] {
function releaseFamilies(): readonly ReleaseFamily[] {
return [new DshFamily(), new VendorFamily()]
}