(t: Target)
| 110 | * semver prerelease segment of variant package versions. e.g. "linux-x64", |
| 111 | * "linux-x64-musl", "darwin-arm64". */ |
| 112 | const platformTag = (t: Target) => [platformName(t), t.arch, t.abi].filter(Boolean).join("-"); |
| 113 | |
| 114 | /** Dist directory name (e.g. dist/executor-linux-x64). Only used as a build |
| 115 | * artifact convention; the actual npm package name inside is `executor`. */ |
no test coverage detected