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