Skip to content

Commit

Permalink
chore: compile success message
Browse files Browse the repository at this point in the history
  • Loading branch information
anikghosh256 authored Jul 27, 2024
1 parent 6626173 commit 8e5e5e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmds/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ exports.handler = function (argv) {
// check if config file has successMessage
if (config.successMessage !== undefined) {
console.log();
console.log(chalk.green(config.successMessage));
console.log(chalk.green(compile(null, inputObject, config.successMessage)));
}
} catch (error) {
console.log(chalk.red(error.message));
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@anikghosh256/kitty-cli",
"description": "CLI tool for creating kitty component.",
"version": "0.4.0",
"version": "0.4.1",
"license": "MIT",
"bin": {
"kitty-cli": "kitty.js",
Expand Down

0 comments on commit 8e5e5e6

Please sign in to comment.