fix(zip): List all private packages correctly in a PNPM workspace (#520)
This commit is contained in:
@@ -7,7 +7,7 @@ export const pnpm: WxtPackageManagerImpl = {
|
||||
return npm.downloadDependency(...args);
|
||||
},
|
||||
async listDependencies(options) {
|
||||
const args = ['ls', '--json'];
|
||||
const args = ['ls', '-r', '--json'];
|
||||
if (options?.all) {
|
||||
args.push('--depth', 'Infinity');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user