Skip to content

Commit

Permalink
Merge branch 'master' into 2060-inline-link-hover-active-color
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Jan 12, 2021
2 parents 5ff556e + df95abf commit 79cd09a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/cli/src/workspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,7 @@ async function getPackages() {
'list',
'--json',
]);
return JSON.parse(
// Clean-up output by stripping out `yarn` information related to the
// command and how long it took to run
lernaListOutput.split('\n').slice(2, -1).join('\n')
).filter((pkg) => !pkg.private);
return JSON.parse(lernaListOutput).filter((pkg) => !pkg.private);
}

module.exports = {
Expand Down

0 comments on commit 79cd09a

Please sign in to comment.