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