From 903ef51c9c6a6e26dbd20406a14f37ef30045701 Mon Sep 17 00:00:00 2001 From: David Nagy Date: Tue, 30 Jul 2024 16:33:39 +0200 Subject: [PATCH] 1.0.1 --- package.json | 2 +- src/index.ts | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1e8094a..9283bb9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@grandlinex/easy-cli", - "version": "1.0.0", + "version": "1.0.1", "description": "Cli lib to perform common tasks", "main": "dist/index.js", "module": "dist/index.js", diff --git a/src/index.ts b/src/index.ts index 6d8e311..c2eb636 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,4 @@ +import getVersion from './utils/Version.js'; import TestScript from './TestScript.js'; import CommandHandler from './CommandHandler.js'; import CliParser from './class/CliParser.js'; @@ -7,5 +8,12 @@ import ArgUtil from './utils/ArgUtil.js'; export * from './class/ShellComand.js'; export * from './lib/types.js'; -export { CommandHandler, CliParser, InteractionArgs, ArgUtil, TestScript }; +export { + CommandHandler, + CliParser, + InteractionArgs, + ArgUtil, + TestScript, + getVersion, +}; export default CommandHandler;