()
| 178 | } |
| 179 | |
| 180 | async function findStaleLockfileEntries() { |
| 181 | return findStaleLockfileEntriesInText(await Bun.file(lockfile).text()) |
| 182 | } |
| 183 | |
| 184 | function findStaleLockfileEntriesInText(txt: string) { |
| 185 | return Array.from(txt.matchAll(/^ "([^"]+)": \["(@opentui\/(?:core(?:-[^@"]+)?|keymap|solid))@([^"]+)"/gm)) |
no test coverage detected