Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Elschnagoo committed Jul 30, 2024
1 parent 657ee37 commit 903ef51
Show file tree
Hide file tree
Showing 2 changed files with 10 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": "@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",
Expand Down
10 changes: 9 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand All @@ -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;

0 comments on commit 903ef51

Please sign in to comment.