(cmdFormat: string)
| 31 | } |
| 32 | |
| 33 | public async getPackagesOutsideWorkspaceRoot(cmdFormat: string): Promise<Packages> { |
| 34 | return await this.getPackages(cmdFormat, (pkg) => !pkg.manifest_path.startsWith(this.root)); |
| 35 | } |
| 36 | |
| 37 | public async getWorkspaceMembers(cmdFormat: string): Promise<Packages> { |
| 38 | return await this.getPackages(cmdFormat, (_) => true, "--no-deps"); |