From a6ff60946042475e33ad2b8172d481edca91bdbf Mon Sep 17 00:00:00 2001 From: jitiendran Date: Tue, 14 Mar 2023 22:20:48 +0530 Subject: [PATCH] release(package): release v0.0.10 --- CHANGELOG.md | 4 ++-- package.json | 2 +- src/index.ts | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6bde17..686c3b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.0.9 (12-03-2023) +## 0.0.10 (14-03-2023) - Changing core functions to OOPS class and static methods by @aaraamuthan in https://github.com/arclix/core/pull/16 - refactor(#17): refactor and separate addIndex flag by @jitiendran in https://github.com/arclix/core/pull/18 @@ -7,7 +7,7 @@ - test(core): add unit test for all the modules (#8) by @jitiendran in https://github.com/arclix/core/pull/23 - fix(deps): move required deps to dependencies (#27) by @jitiendran in https://github.com/arclix/core/pull/28 -## 0.0.8 (05-03-2023) +## 0.0.8 (05-03-2023) deprecated - Fixed bug and added version flag and scopeStyle by @jitiendran in https://github.com/arclix/core/pull/2 - Added bug report template by @jitiendran in https://github.com/arclix/core/pull/3 diff --git a/package.json b/package.json index d0296ec..10b274a 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "type": "git", "url": "https://github.com/arclix/core.git" }, - "version": "0.0.9", + "version": "0.0.10", "description": "An Open Source CLI for React.JS", "main": "dist/index.js", "type": "module", diff --git a/src/index.ts b/src/index.ts index 35eaefb..625f469 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,7 +18,7 @@ const checkProjectName = (projectName: string): boolean => { }; program.version( - "ARCLIX v0.0.9", + "ARCLIX v0.0.10", "-v --version", "Displays the version of Arclix in use", ); @@ -27,7 +27,7 @@ program .command(Command.CREATE) .description("Creates React project in the current directory") .action(async (_str, options) => { - log("\n" + primaryChalk.italic.bold("ARCLIX v0.0.9")); + log("\n" + primaryChalk.italic.bold("ARCLIX v0.0.10")); emptyLine(); const projectName = options.args[0]; @@ -71,7 +71,7 @@ generate .option("-f, --flat", "Generates components without parent folder.") .option("-p, --path ", "Generates components based on the path.") .action((componentName: string, options: OptionValues) => { - log("\n" + primaryChalk.italic.bold("ARCLIX v0.0.9")); + log("\n" + primaryChalk.italic.bold("ARCLIX v0.0.10")); emptyLine(); generateComponentInstance.generateProject(componentName, options); });