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

@@ -38,10 +38,18 @@ export abstract class PackageCommand extends Command {
);
}
deps = Option.Boolean('--deps', false, {
protected _deps = Option.Boolean('--deps', false, {
description:
'Execute the same command in workspace dependencies, if defined.',
});
get deps() {
return this._deps;
}
waitDeps = Option.Boolean('--wait-deps', false, {
description: 'Wait for dependencies to be ready before running the command',
});
}
export abstract class PackagesCommand extends Command {