fix(zip): List all private packages correctly in a PNPM workspace (#520)

This commit is contained in:
Aaron
2024-03-03 09:56:42 -06:00
committed by GitHub
parent f19e6908b0
commit aabba41e86
+1 -1
View File
@@ -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');
}