-
Hi I want to implement the command to generate a changelog at each release. So far so good but I have trouble understanding how the command works. Let me explain. I type the command to increase the version manually and generate the changelog file with the different commits. But when it generates the changelog, it also generates me a changelog in the package and in its example while I put "packages/**/example" on ignore. changelog root :
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Have you tried adding an ignore flag using the package name? E.g. |
Beta Was this translation helpful? Give feedback.
-
Private packages are not included in the changelog. A package is private if it's
For each commit, melos checks if files in a particular package have changed. So if a commit touches files in two different packages, both packages are versioned based on the commit. |
Beta Was this translation helpful? Give feedback.
Private packages are not included in the changelog. A package is private if it's
pubspec.yaml
has noversion
or ifpublish_to
isnone
.For each commit, melos checks if files in a particular package have changed. So if a commit touches files in two different packages, both packages are versioned based on the commit.