(sdkVersion?: string)
| 125 | } |
| 126 | |
| 127 | export function isStableSdk(sdkVersion?: string): boolean { |
| 128 | // We'll consider empty versions as dev; stable versions will likely always |
| 129 | // be shipped with valid version files. |
| 130 | return !!(sdkVersion && !semver.prerelease(sdkVersion)); |
| 131 | } |
| 132 | |
| 133 | export function usingCustomScript(binPath: string, binArgs: string[], customScript: CustomScript | undefined): ExecutionInfo { |
| 134 | if (customScript?.script) { |