Skip to content

Commit

Permalink
log version on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
brianorwhatever committed Oct 6, 2023
1 parent f5fec69 commit a10b062
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aviarytech/tev2-hrgt",
"version": "0.0.5",
"version": "0.0.6",
"description": "Human Readable Glossary Tool (HRGT)",
"main": "lib/Run.js",
"types": "lib/Run.d.ts",
Expand Down
4 changes: 3 additions & 1 deletion src/Run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ async function main(): Promise<void> {
}

console.log(
chalk.red(figlet.textSync("TEv2 HRGT", { horizontalLayout: "full" }))
chalk.red(
figlet.textSync(`TEv2 HRGT v${version}`, { horizontalLayout: "full" })
)
);

if (options.config) {
Expand Down

0 comments on commit a10b062

Please sign in to comment.