From 62ef99787f6ec0cb3dfaaa20fe125e6e74977495 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lenon?= Date: Thu, 12 May 2022 14:01:02 -0300 Subject: [PATCH] fix(cli): instantiate cli --- package.json | 2 +- src/index.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f1fafe4..108eeb4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@athenna/cli", - "version": "1.0.5", + "version": "1.0.6", "description": "Athenna CLI to create new projects and install components.", "license": "MIT", "author": "João Lenon ", diff --git a/src/index.js b/src/index.js index 663de58..8ff3dc5 100644 --- a/src/index.js +++ b/src/index.js @@ -81,3 +81,5 @@ export class Cli { await this.#commander.parseAsync(process.argv) } } + +new Cli().main()