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
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -172,6 +172,19 @@ When modifying dependencies (`package.json`), make sure to:
172
172
173
173
We require package-lock.json to be checked in to ensure consistent installations across development environments.
174
174
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.
177
+
178
+
To manually generate a changelog:
179
+
```shell script
180
+
npm run changelog
181
+
```
182
+
183
+
You can also specify custom options:
184
+
```shell script
185
+
npm run changelog -- --start-ref v1.0.0 --end-ref HEAD --output CHANGELOG.md
186
+
```
187
+
175
188
### Copyright Headers
176
189
All source files in the bin, scripts, src, and test folders must include a copyright header containing both the words "Copyright" and "Amazon.com". The standard header format is:
0 commit comments