We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 990f54f + 0846a44 commit a14fd05Copy full SHA for a14fd05
1 file changed
lib/yarn-package-manager.ts
@@ -64,7 +64,9 @@ export class YarnPackageManager extends BasePackageManager {
64
} catch (e) {
65
this.$errors.failWithoutHelp(e.message);
66
}
67
- return JSON.parse(viewResult);
+
68
+ const result = JSON.parse(viewResult);
69
+ return result.data;
70
71
72
@exported("yarn")
0 commit comments