Skip to content
This repository was archived by the owner on Jan 19, 2026. It is now read-only.

Commit 07e0854

Browse files
committed
fix: adjust konsola breaks
1 parent 13003c9 commit 07e0854

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

src/index.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ export * from './types/storyblok';
1919
dotenv.config(); // This will load variables from .env into process.env
2020
const program = getProgram();
2121

22+
konsola.br();
23+
konsola.br();
2224
konsola.title(` Storyblok CLI `, colorPalette.PRIMARY);
2325

2426
program.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-
4236
try {
4337
program.parse(process.argv);
4438
}

src/utils/konsola.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ export function formatHeader(title: string) {
1010
}
1111
export 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
}

0 commit comments

Comments
 (0)