()
| 17 | platform === "win32" ? "windows" : platform; |
| 18 | |
| 19 | const currentTargetPackage = (): string => |
| 20 | `executor-${platformName(process.platform)}-${process.arch}`; |
| 21 | |
| 22 | const targetPackageFromBunTarget = (target: string | undefined): string | null => { |
| 23 | if (!target || target === "bun") return null; |
no test coverage detected