@sysvale/citizen-components 0.1.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -0
- package/dist/citizen-components.cjs.js +9 -9
- package/dist/citizen-components.css +1 -1
- package/dist/citizen-components.es.js +1553 -1137
- package/dist/index.d.ts +10 -4
- package/dist/services/citizen/citizen.types.d.ts +18 -0
- package/dist/types.d.ts +9 -2
- package/package.json +15 -4
package/README.md
CHANGED
|
@@ -92,3 +92,25 @@ npm run format
|
|
|
92
92
|
```bash
|
|
93
93
|
npm run type-check
|
|
94
94
|
```
|
|
95
|
+
|
|
96
|
+
## Releases
|
|
97
|
+
|
|
98
|
+
O citizen-components utiliza [semantic-release](https://github.com/semantic-release/semantic-release) para versionamento e publicação automatizados.
|
|
99
|
+
|
|
100
|
+
### Como funciona
|
|
101
|
+
|
|
102
|
+
Ao mejar um PR na branch `main`, o CI automaticamente:
|
|
103
|
+
- Analisa os commits usando [Conventional Commits](https://www.conventionalcommits.org/)
|
|
104
|
+
- Calcula a próxima versão (patch, minor ou major)
|
|
105
|
+
- Atualiza `package.json` e `package-lock.json`
|
|
106
|
+
- Cria uma release no GitHub com notas geradas automaticamente
|
|
107
|
+
- Publica o pacote no NPM
|
|
108
|
+
|
|
109
|
+
### Conventional Commits
|
|
110
|
+
|
|
111
|
+
Use os seguintes prefixos nos commits:
|
|
112
|
+
|
|
113
|
+
- `feat:` - Nova funcionalidade (incrementa versão **minor**)
|
|
114
|
+
- `fix:` - Correção de bug (incrementa versão **patch**)
|
|
115
|
+
- `feat!:` ou `BREAKING CHANGE:` - Mudança que quebra compatibilidade (incrementa versão **major**)
|
|
116
|
+
- `docs:`, `chore:`, `style:`, `test:` - Não geram release
|