Skip to content

Commit

Permalink
fix(cli): disable vertical borders of the update notification (#9309)
Browse files Browse the repository at this point in the history
  • Loading branch information
qwerzl committed Sep 15, 2023
1 parent 598b320 commit 6e8e276
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/docusaurus/bin/beforeCli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,16 @@ export default async function beforeCli() {
margin: 1,
align: 'center',
borderColor: 'yellow',
borderStyle: 'round',
borderStyle: {
topLeft: ' ',
topRight: ' ',
bottomLeft: ' ',
bottomRight: ' ',
top: '-',
bottom: '-',
left: ' ',
right: ' ',
},
};

const docusaurusUpdateMessage = boxen(
Expand Down

0 comments on commit 6e8e276

Please sign in to comment.