(pkg: WorkspacePackage)
| 77 | |
| 78 | /** Whether a package publishes through the npm registry (vs custom command / git-tag tracking) */ |
| 79 | export function usesNpmRegistry(pkg: WorkspacePackage): boolean { |
| 80 | return !pkg.bumpy?.publishCommand && !pkg.bumpy?.skipNpmPublish && !pkg.private; |
| 81 | } |
| 82 | |
| 83 | /** Query published prerelease state for one package at a target version */ |
| 84 | export async function getPublishedPrereleaseState( |
no outgoing calls
no test coverage detected
searching dependent graphs…