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
+3 -1
View File
@@ -4,12 +4,14 @@ export class BuildCommand extends PackageCommand {
static override paths = [['build'], ['b']];
async execute() {
const args = ['affine build', this.package];
const args: string[] = [];
if (this.deps) {
args.push('--deps');
}
args.push(this.package, 'build');
await this.cli.run(args);
}
}