monorepo-next
Version:
Detach monorepo packages from normal linking
17 lines (12 loc) • 337 B
JavaScript
const postRun = require('../../src/post-run');
module.exports = {
command: 'attach [package]',
aliases: ['a'],
describe: 'attach a package to a detached package to resume normal linking',
async handler(argv) {
const attach = require('../../src/attach');
await attach(argv);
await postRun();
},
};
;