Skip to content

Commit

Permalink
Remove version from banner
Browse files Browse the repository at this point in the history
  • Loading branch information
igr committed Jan 28, 2020
1 parent 8dbaa00 commit fcbfa3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ export function line(msg?: string): void {
console.log(chalk.dim(str));
}

export function banner(version: string): void {
export function banner(): void {
console.log();
console.log(chalk.bgHex('0xF74B00').black(` -=[Spignite v${version}]=- `));
console.log(chalk.bgHex('0xF74B00').black(` -=[Spignite]=- `));
console.log();
}

Expand Down
2 changes: 1 addition & 1 deletion src/spig-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as log from './log';

export const spigVersion = '2';

log.banner(spigVersion);
log.banner();

/**
* Development-related configuration. For internal use only.
Expand Down

0 comments on commit fcbfa3e

Please sign in to comment.