Skip to content

Commit 7c47ea2

Browse files
committed
fix(release): 🐛 corrige erreur semantic-release avec type refactor manquant
## Pourquoi les changements ont été faits : - Erreur lors de l'exécution de semantic-release : "Method Date.prototype.toString called on incompatible receiver" - Configuration incohérente entre commit-analyzer et release-notes-generator - Le type 'refactor' était configuré avec 'release: false' mais absent du changelog ## Quelles modifications ont été apportées : - Ajout de { "type": "refactor", "hidden": true } dans presetConfig.types - Cohérence entre les deux plugins de semantic-release - Les commits refactor restent cachés du changelog et ne déclenchent pas de release
1 parent 54ba9dc commit 7c47ea2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@
201201
{ "type": "perf", "section": "⚡ Améliorations de performance" },
202202
{ "type": "ci", "section": "👷 CI/CD" },
203203
{ "type": "test", "section": "✅ Tests" },
204+
{ "type": "refactor", "hidden": true },
204205
{ "type": "style", "hidden": true }
205206
]
206207
}

0 commit comments

Comments
 (0)