fix: patch arborist to get around bun bug (#23460)

This commit is contained in:
Aiden Cline 2026-04-20 00:49:46 -05:00 committed by GitHub
parent 687b758882
commit e539efe2b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 64 additions and 0 deletions

View file

@ -5,6 +5,7 @@ declare module "@npmcli/arborist" {
progress?: boolean
savePrefix?: string
ignoreScripts?: boolean
[key: string]: unknown
}
export interface ArboristNode {
@ -24,6 +25,7 @@ declare module "@npmcli/arborist" {
add?: string[]
save?: boolean
saveType?: "prod" | "dev" | "optional" | "peer"
[key: string]: unknown
}
export class Arborist {