Replies: 2 comments 1 reply
-
Do you want to generate CHANGELOG.md or github release page? Generate CHANGELOG.mdI use pkgs Reference Vuepress repository: https://github.com/vuepress/vuepress-next/blob/392297fa856fd5869de40e4999c5bc4d126a3941/package.json#L22-L26 But I am running the Lines 31 to 35 in e2b402d Github release page record changlogI recommend using github action: https://github.com/antfu/changelogithub How to workUse the repo Why use
|
Beta Was this translation helpful? Give feedback.
-
use husky git hook
test unitest or e2e test or just commit test ?
Release is not automatic, it can be set to manual, using github action. Write a command that triggers running |
Beta Was this translation helpful? Give feedback.
-
Installing
cz-git
is one step of many steps being added to Angular projects to protect your commit history from random bad commit messages and keep it clean and convenient so that we can generate a niceCHANGELOG.md
for each release we generate. Starting from this point, where you need to automate your releases using to generate a semantic releases.At this point we have two options: use Standard Version which is deprecated (I don't know why 🤯) or use Semantic Release.
Before following the Setup and Configuration of Semantic Release, I need to prepare my Angular project with the following:
After finishing the previous steps, Here comes the part of generating a release.
What is the best changelog packages to be installed along with
cz
Beta Was this translation helpful? Give feedback.
All reactions