@ckeditor/ckeditor5-dev-changelog
v55.5.0
Published
A CKEditor 5 development tool for handling changelogs.
Downloads
15,651
Readme
CKEditor 5 Changelog
A development tool for handling the changelog preparation in CKEditor 5.
Installation
Install the package to use it.
npm i --save-dev @ckeditor/ckeditor5-dev-changelogAPI
This package provides a command-line interface (CLI) and a JavaScript API for generating changelogs.
Binary scripts
The ckeditor5-dev-changelog-create-entry script allows you to create a new changelog entry. By default, it will be created in the
.changelog/ directory.
JavaScript API
The JavaScript/TypeScript API can be used as follows:
import { generateChangelogForMonoRepository, generateChangelogForSingleRepository } from '@ckeditor/ckeditor5-dev-changelog';
await generateChangelogForMonoRepository( { /* options */ } );
await generateChangelogForSingleRepository( { /* options */ } );Review the types to see the available options.
Changelog
See the CHANGELOG.md file.
License
Licensed under the terms of GNU General Public License Version 2 or later. For full details about
the license, please check the LICENSE.md file.
