You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -173,16 +173,16 @@ When modifying dependencies (`package.json`), make sure to:
173
173
We require package-lock.json to be checked in to ensure consistent installations across development environments.
174
174
175
175
### Changelog Generation
176
-
This project includes an automated changelog generator that creates a list of commits between tags when a new release is created. The changelog is automatically included in GitHub release notes.
176
+
This project maintains a changelog in `RELEASE.CHANGELOG.md`. The changelog is automatically updated when a new tag is created.
177
177
178
-
To manually generate a changelog:
178
+
To manually generate a changelog entry for testing or preview purposes, run:
179
179
```shell script
180
180
npm run changelog
181
181
```
182
182
183
-
You can also specify custom options:
183
+
To manually update the RELEASE.CHANGELOG.md file with a new entry:
184
184
```shell script
185
-
npm run changelog -- --start-ref v1.0.0 --end-ref HEAD --output CHANGELOG.md
0 commit comments