mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-01 19:27:48 +02:00
fix(cli): disable vertical borders of the update notification (#9309)
This commit is contained in:
parent
598b32011f
commit
6e8e276e40
1 changed files with 10 additions and 1 deletions
|
@ -141,7 +141,16 @@ export default async function beforeCli() {
|
||||||
margin: 1,
|
margin: 1,
|
||||||
align: 'center',
|
align: 'center',
|
||||||
borderColor: 'yellow',
|
borderColor: 'yellow',
|
||||||
borderStyle: 'round',
|
borderStyle: {
|
||||||
|
topLeft: ' ',
|
||||||
|
topRight: ' ',
|
||||||
|
bottomLeft: ' ',
|
||||||
|
bottomRight: ' ',
|
||||||
|
top: '-',
|
||||||
|
bottom: '-',
|
||||||
|
left: ' ',
|
||||||
|
right: ' ',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const docusaurusUpdateMessage = boxen(
|
const docusaurusUpdateMessage = boxen(
|
||||||
|
|
Loading…
Add table
Reference in a new issue