Skip to content

Commit

Permalink
Merge branch 'master' into chore/clean-up-aat-artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Jan 12, 2021
2 parents 5e80a91 + bba05be commit 0a468f6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 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
4 changes: 0 additions & 4 deletions packages/components/src/components/link/_link.scss
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,6 @@
.#{$prefix}--link.#{$prefix}--link--inline {
text-decoration: underline;

&:hover {
color: $hover-primary-text;
}

&:focus,
&:visited {
text-decoration: none;
Expand Down

0 comments on commit 0a468f6

Please sign in to comment.