(/** @type {string} */ pkg)
| 133 | const getPkgRoot = (/** @type {string} */ pkg) => |
| 134 | path.resolve(__dirname, '../packages/' + pkg) |
| 135 | const getPkgManifest = (/** @type {string} */ pkg) => |
| 136 | /** @type {Package} */ ( |
| 137 | JSON.parse( |
| 138 | fs.readFileSync(path.resolve(getPkgRoot(pkg), 'package.json'), 'utf-8'), |
| 139 | ) |
| 140 | ) |
| 141 | const step = (/** @type {string} */ msg) => console.log(pico.cyan(msg)) |
| 142 | |
| 143 | async function main() { |
no test coverage detected