@gilbert_oliveira/commit-wizard 2.0.0 → 2.0.2

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.
Files changed (2) hide show
  1. package/README.md +5 -2
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -2,9 +2,11 @@
2
2
 
3
3
  > **Gere mensagens de commit inteligentes usando IA**
4
4
 
5
- [![CI/CD](https://github.com/gilbert-oliveira/commit-wizard/workflows/CI%2FCD/badge.svg)](https://github.com/gilbert-oliveira/commit-wizard/actions)
5
+ [![CI/CD](https://github.com/gilbert-oliveira/commit-wizard/workflows/CI/badge.svg)](https://github.com/gilbert-oliveira/commit-wizard/actions)
6
+ [![Security](https://github.com/gilbert-oliveira/commit-wizard/workflows/Segurança/badge.svg)](https://github.com/gilbert-oliveira/commit-wizard/actions)
7
+ [![Deploy](https://github.com/gilbert-oliveira/commit-wizard/workflows/Deploy/badge.svg)](https://github.com/gilbert-oliveira/commit-wizard/actions)
6
8
  [![Codecov](https://codecov.io/gh/gilbert-oliveira/commit-wizard/branch/main/graph/badge.svg)](https://codecov.io/gh/gilbert-oliveira/commit-wizard)
7
- [![npm version](https://img.shields.io/npm/v/@gilbert-oliveira/commit-wizard.svg)](https://www.npmjs.com/package/@gilbert-oliveira/commit-wizard)
9
+ [![npm version](https://img.shields.io/npm/v/@gilbert_oliveira/commit-wizard.svg)](https://www.npmjs.com/package/@gilbert_oliveira/commit-wizard)
8
10
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
11
 
10
12
  Um CLI desenvolvido com Bun.js que analisa suas mudanças no Git e gera mensagens de commit personalizadas usando a API da OpenAI.
@@ -436,6 +438,7 @@ MIT © [Gilbert Oliveira](https://github.com/gilbert-oliveira)
436
438
  - [Documentação da OpenAI](https://platform.openai.com/docs)
437
439
  - [Conventional Commits](https://www.conventionalcommits.org/)
438
440
  - [Bun.js](https://bun.sh/)
441
+ - [📋 Guia para Contribuidores](.github/README.md) - Informações sobre desenvolvimento e CI/CD
439
442
 
440
443
  ---
441
444
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "displayName": "Commit Wizard",
4
4
  "publisher": "gilbert-oliveira",
5
5
  "description": "CLI inteligente para gerar mensagens de commit usando OpenAI",
6
- "version": "2.0.0",
6
+ "version": "2.0.2",
7
7
  "categories": [
8
8
  "Other",
9
9
  "SCM Providers"
@@ -32,6 +32,7 @@
32
32
  "release:patch": "./scripts/release.sh patch",
33
33
  "release:minor": "./scripts/release.sh minor",
34
34
  "release:major": "./scripts/release.sh major",
35
+ "check-changes": "node -e \"const { execSync } = require('child_process'); const changed = execSync('git diff --name-only HEAD~1 HEAD', { encoding: 'utf8' }).includes('package.json') || execSync('git diff --name-only HEAD~1 HEAD', { encoding: 'utf8' }).match(/(src|bin|scripts|dist)\/\\.*/); console.log(changed ? '🚀 Mudanças detectadas - deploy recomendado!' : '⚠️ Nenhuma mudança significativa detectada'); process.exit(changed ? 0 : 1);\"",
35
36
  "type-check": "bun run tsc --noEmit",
36
37
  "lint": "bun run eslint --fix",
37
38
  "format": "bun run prettier --write ."