Skip to content

Commit

Permalink
release(package): release v0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jitiendran committed Mar 14, 2023
1 parent 4182304 commit a6ff609
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## <small>0.0.9 (12-03-2023)</small>
## <small>0.0.10 (14-03-2023)</small>

- 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
Expand All @@ -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

## <small>0.0.8 (05-03-2023)</small>
## <small>0.0.8 (05-03-2023) deprecated</small>

- 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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
);
Expand All @@ -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];
Expand Down Expand Up @@ -71,7 +71,7 @@ generate
.option("-f, --flat", "Generates components without parent folder.")
.option("-p, --path <string>", "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);
});
Expand Down

0 comments on commit a6ff609

Please sign in to comment.