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.
1 parent eee0a96 commit df95abfCopy full SHA for df95abf
packages/cli/src/workspace.js
@@ -53,11 +53,7 @@ async function getPackages() {
53
'list',
54
'--json',
55
]);
56
- return JSON.parse(
57
- // Clean-up output by stripping out `yarn` information related to the
58
- // command and how long it took to run
59
- lernaListOutput.split('\n').slice(2, -1).join('\n')
60
- ).filter((pkg) => !pkg.private);
+ return JSON.parse(lernaListOutput).filter((pkg) => !pkg.private);
61
}
62
63
module.exports = {
0 commit comments