()
| 23 | // Builds may bake this value into MACRO.NATIVE_PACKAGE_URL. Deployments can |
| 24 | // override it with NCODE_NATIVE_PACKAGE_URL, including internal-only buckets. |
| 25 | function getPublicBinaryUrl(): string | undefined { |
| 26 | return MACRO.NATIVE_PACKAGE_URL || process.env.NCODE_NATIVE_PACKAGE_URL |
| 27 | } |
| 28 | |
| 29 | export const GITHUB_RELEASES_API_URL = |
| 30 | process.env.NCODE_GITHUB_RELEASES_API_URL ?? |
no outgoing calls
no test coverage detected