Skip to content

Commit

Permalink
fix: CLI description
Browse files Browse the repository at this point in the history
  • Loading branch information
Aman-zishan committed Dec 28, 2023
1 parent 1c5cb79 commit 072a207
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "csm-kit",
"version": "1.2.0",
"version": "1.3.0",
"description": "CSM is a CLI tool to manage your code snippets.",
"main": "dist/index.js",
"bin": {
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ const program = new Command();
console.log(chalk.red(figlet.textSync('CSM', '3D Diagonal')));

program
.version('1.0.0')
.version('1.3.0')
.description(
chalk.green(
'A CLI Code Snippet Manager tool for managing code snippets directly from your terminal currently supports JavaScript, TypeScript and Python',
'A CLI Code Snippet Manager tool for managing code snippets directly from your terminal',
),
)
.option('-s, --save <filepath>', 'Save a code snippet')
Expand Down

0 comments on commit 072a207

Please sign in to comment.