(pkg)
| 290 | * Given a package name get the current version frem the package.json |
| 291 | */ |
| 292 | export function getPackageVersion(pkg) { |
| 293 | const packageJSON = getPackageJSON(pkg) |
| 294 | return packageJSON.version |
| 295 | } |
| 296 | |
| 297 | /** |
| 298 | * Given a dependency and parent package get the current version of the dependency |
no test coverage detected