@smart-dev-agency/smart-cli
v3.0.1
Published
Set of development tools for the command line.
Maintainers
Readme
Smart CLI Tools for developers
Set of development tools for the command line.
Requirements
- node js 16+
Installation
npm i -g @smart-dev-agency/smart-cliUsage
Once the CLI is installed globally, you can run it with smart-cli to get a main view of the application.
Change Configuration
You can use the update_config command to update some CLI configuration. This is the JSON structure to update config:
{
"cli_name": "New Name CLI",
"commits_prefix": {
"feat": "✨", // string or emoji data
"fix": "🚑️",
"chore": "📝",
"release": "🚀",
"docs": "📝",
"test": "🧪",
"style": "💄",
"refactor": "♻️",
"perf": "⚡️",
"build": "👷",
"ci": "🏗️",
"revert": "⏪️"
}
}