Skip to content

Commit

Permalink
Merge pull request #41 from arclix/version/0.1.0
Browse files Browse the repository at this point in the history
chore(package)!: release v0.1.0
  • Loading branch information
jitiendran authored Mar 24, 2023
2 parents 6ac0076 + 853d693 commit ff35d30
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## <small>0.1.0 (24-03-2023)</small>

- chore(commit): add commit lint to project (#29) by @jitiendran in https://github.com/arclix/core/pull/30
- fix(readme): resize arclix icon in readme file (#31) by @jitiendran in https://github.com/arclix/core/pull/32
- fix(name): update create project class name case (#34) by @jitiendran in https://github.com/arclix/core/pull/35
- fix(template): remove extra '.' from component template (#36) by @jitiendran in https://github.com/arclix/core/pull/37
- feat(config)!: generate config file for arclix (#33) by @jitiendran in https://github.com/arclix/core/pull/38
- fix(config)!: add trailing / to defaultPath in config.json (#39) by @jitiendran in https://github.com/arclix/core/pull/40

## <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
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.10",
"version": "0.1.0",
"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.10",
"ARCLIX v0.1.0",
"-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.10"));
log("\n" + primaryChalk.italic.bold("ARCLIX v0.1.0"));
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.10"));
log("\n" + primaryChalk.italic.bold("ARCLIX v0.1.0"));
emptyLine();
generateComponentInstance.generateProject(componentName, options);
});
Expand Down

0 comments on commit ff35d30

Please sign in to comment.