(config: ReleaseConfig)
| 40 | |
| 41 | /** Fetches the NPM package representing the project. */ |
| 42 | export async function fetchProjectNpmPackageInfo(config: ReleaseConfig): Promise<NpmPackageInfo> { |
| 43 | return await fetchPackageInfoFromNpmRegistry(config.representativeNpmPackage); |
| 44 | } |
| 45 | |
| 46 | /** Gets whether the given version is published to NPM or not */ |
| 47 | export async function isVersionPublishedToNpm( |
no test coverage detected