[type](<scope>): [subject] <línea en blanco> [body] <línea en blanco> [footer] ## Commit types | Commit Type | Title | Description | Emoji | | ----------- | ------------------------ | ----------------------------------------------------------------------------------------------------------- |:------:| | `feat` | Features | A new feature | ✨ | | `fix` | Bug Fixes | A bug Fix | 🐛 | | `docs` | Documentation | Documentation only changes | 📚 | | `style` | Styles | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) | 💎 | | `refactor` | Code Refactoring | A code change that neither fixes a bug nor adds a feature | 📦 | | `perf` | Performance Improvements | A code change that improves performance | 🚀 | | `test` | Tests | Adding missing tests or correcting existing tests | 🚨 | | `build` | Builds | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) | 🛠 | | `ci` | Continuous Integrations | Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) | ⚙️ | | `chore` | Chores | Other changes that don't modify src or test files | ♻️ | | `revert` | Reverts | Reverts a previous commit | 🗑 | BREAKING CHANGE: Un cambio que contenga esta palabra en el footer del mensaje o un signo ! despues del tipo o scope, rompe la compatibilidad con versiones anteriores. Tendría correlación con una versión MAJOR siguiendo SemVer. ## Commit aliases | Commit Type | Maps to | Title | Description | Emoji | | ------------------ | ------- | ----------------- | ------------------------------ |:------:| | `initial` | `feat` | Initial | Initial commit | 🎉 | | `dependencies` | `fix` | Dependencies | Update dependencies | ⏫ | | `peerDependencies` | `fix` | Peer dependencies | Update peer dependencies | ⬆️ | | `devDependencies` | `chore` | Dev dependencies | Update development dependencies | 🔼 | | `metadata` | `fix` | Metadata | Update metadata (package.json) | 📦 |