This repository was archived by the owner on Jan 19, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ export * from './types/storyblok';
1919dotenv . config ( ) ; // This will load variables from .env into process.env
2020const program = getProgram ( ) ;
2121
22+ konsola . br ( ) ;
23+ konsola . br ( ) ;
2224konsola . title ( ` Storyblok CLI ` , colorPalette . PRIMARY ) ;
2325
2426program . option ( '--verbose' , 'Enable verbose output' ) ;
@@ -31,14 +33,6 @@ program.on('command:*', () => {
3133 program . help ( ) ;
3234} ) ;
3335
34- /* console.log(`
35- ${chalk.hex(colorPalette.PRIMARY)(' ──────╮')}
36- ${chalk.hex(colorPalette.PRIMARY)('│ │')}
37- ${chalk.hex(colorPalette.PRIMARY)('│')} ◠ ◡ ◠
38- ${chalk.hex(colorPalette.PRIMARY)('╰─ ───╯')}
39- ${chalk.hex(colorPalette.PRIMARY)(' |/ ')}
40- `); */
41-
4236try {
4337 program . parse ( process . argv ) ;
4438}
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ export function formatHeader(title: string) {
1010}
1111export const konsola = {
1212 title : ( message : string , color : string , subtitle ?: string ) => {
13- console . log ( '' ) ; // Add a line break
14- console . log ( '' ) ; // Add a line break
1513 if ( subtitle ) {
1614 console . log ( `${ formatHeader ( chalk . bgHex ( color ) . bold ( ` ${ message } ` ) ) } ${ subtitle } ` ) ;
1715 }
You can’t perform that action at this time.
0 commit comments