UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

106 lines (105 loc) 2.61 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DEFAULT_CONVENTIONAL_COMMITS_CONFIG = void 0; exports.DEFAULT_CONVENTIONAL_COMMITS_CONFIG = { types: { feat: { semverBump: 'minor', changelog: { title: '🚀 Features', hidden: false, }, }, fix: { semverBump: 'patch', changelog: { title: '🩹 Fixes', hidden: false, }, }, perf: { semverBump: 'none', changelog: { title: '🔥 Performance', hidden: false, }, }, refactor: { semverBump: 'none', changelog: { title: '💅 Refactors', hidden: true, }, }, docs: { semverBump: 'none', changelog: { title: '📖 Documentation', hidden: true, }, }, build: { semverBump: 'none', changelog: { title: '📦 Build', hidden: true, }, }, types: { semverBump: 'none', changelog: { title: '🌊 Types', hidden: true, }, }, chore: { semverBump: 'none', changelog: { title: '🏡 Chore', hidden: true, }, }, examples: { semverBump: 'none', changelog: { title: '🏀 Examples', hidden: true, }, }, test: { semverBump: 'none', changelog: { title: '✅ Tests', hidden: true, }, }, style: { semverBump: 'none', changelog: { title: '🎨 Styles', hidden: true, }, }, ci: { semverBump: 'none', changelog: { title: '🤖 CI', hidden: true, }, }, revert: { semverBump: 'none', changelog: { title: '⏪ Revert', hidden: true, }, }, __INVALID__: { semverBump: 'none', changelog: { title: 'Invalid based on conventional commits specification', hidden: true, }, }, }, };