()
| 23 | } |
| 24 | |
| 25 | async function getSortedPackages() { |
| 26 | const packages = await getPackages(); |
| 27 | packages.sort((p1, p2) => |
| 28 | getPackageRelativeUri(p1).localeCompare(getPackageRelativeUri(p2)), |
| 29 | ); |
| 30 | return packages; |
| 31 | } |
| 32 | |
| 33 | function getPackageFields(pkg) { |
| 34 | const packageJson = fse.readJsonSync(path.join(pkg.location, 'package.json')); |
no test coverage detected