Skip to content

Commit 672f04b

Browse files
committed
Extract VERSION constant
1 parent 9fa372d commit 672f04b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ import { listKeys } from "./command/list";
1111
import { CLIError, CLIErrorType } from "./error";
1212
import { AccountType, CreateOption, DeleteOption, ListOption } from "./types";
1313

14-
program.version("0.1.1");
14+
const VERSION = "0.1.1";
15+
16+
program.version(VERSION);
1517

1618
program
1719
.command("list")

0 commit comments

Comments
 (0)