mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 10:06:17 +08:00
fix(tools): patch monorepo tools (#9285)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user