https://github.com/midudev/miduco
Create a CLI that helps you to write better commit messages
https://github.com/midudev/miduco
Last synced: 2 months ago
JSON representation
Create a CLI that helps you to write better commit messages
- Host: GitHub
- URL: https://github.com/midudev/miduco
- Owner: midudev
- Created: 2023-02-28T18:51:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-01T06:31:22.000Z (over 2 years ago)
- Last Synced: 2025-04-10T09:09:27.659Z (2 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 84
- Watchers: 3
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Crear CLI de Node
- [x] Inicializar proyecto + Instalar Linter
- [x] Pedirle al usuario el nombre del commit
- [x] Mostrar un lista de posibles commits
- [x] Comprobar si está en un repositorio de Git
- [x] Pedirle al usuario si es Breaking Change
- [x] Confirmar con el usuario el commit
- [x] Crear el commit
- [x] Crear binario
- [x] Publicar el paquete en npm## Inicializar proyecto + Instalar Linter
```bash
npm init -y
```