@absc_company/semantic-release
v1.0.2
Published
@absc_company/semantic-release
Readme
:milky_way: ABSC-company semantic-release-config
Установить конфиг
pnpm add -D @absc_company/semantic-releaseКак использовать
Создать файл release.config.js и добавить в него содержимое:
import { semanticRelease } from '@absc_company/semantic-release';
export default {
...semanticRelease,
};Триггеры релиза
| Type | Scope | Release | Example |
|------|-------|---------|---------|
| major | — | 🔴 Major | major: remove legacy API |
| feat | major | 🔴 Major | feat(major): redesign core architecture |
| minor | — | 🟡 Minor | minor: add support for custom resolvers |
| feat | minor | 🟡 Minor | feat(minor): introduce optional caching layer |
| fix | — | 🟢 Patch | fix: resolve incorrect line endings on Windows |
| feat | — | 🟢 Patch | feat: add helper utility for config merging |
| patch | — | 🟢 Patch | patch: bump internal dependency |
| refactor | — | 🟢 Patch | refactor: simplify token parsing logic |
| perf | — | 🟢 Patch | perf: reduce bundle size by tree-shaking |
| styles | — | 🟢 Patch | styles: normalize indentation across config files |
| docs | readme | 🟢 Patch | docs(readme): update installation instructions |
| chore | — | ⚫ None | chore: update lockfile |
| docs | — | ⚫ None | docs: add inline code comments |
| tests | — | ⚫ None | tests: add unit tests for edge cases |
