fix(tools): patch monorepo tools (#9285)

This commit is contained in:
forehalo
2024-12-25 04:55:26 +00:00
parent 0acdf62043
commit 2cc7bdfc77
5 changed files with 102 additions and 59 deletions

View File

@@ -4,12 +4,14 @@ export class DevCommand extends PackageCommand {
static override paths = [['dev'], ['d']];
async execute() {
const args = [this.package, 'dev'];
const args = [];
if (this.deps) {
args.push('--deps');
args.push('--deps', '--wait-deps');
}
args.push(this.package, 'dev');
await this.cli.run(args);
}
}