The package was moved to the ckeditor5-linters-config
mono-repository.
npm i --save-dev stylelint-config-ckeditor5
Configure stylelint with a .stylelintrc
file using the following contents:
{
"extends": "stylelint-config-ckeditor5"
}
See the CHANGELOG.md
file.
Note: Be sure that version of dependencies in package.json
are defined correctly.
Before starting the release process, you need to generate the changelog:
npm run changelog
After generating the changelog, you are able to release the package.
First, you need to bump the version:
npm run release:bump-version
You can also use the --dry-run
option in order to see what this task does.
After bumping the version, you can publish the changes:
npm run release:publish
As in the previous task, the --dry-run
option is also available.