Skip to content

Commit fa3ad7d

Browse files
authored
Merge pull request #1154 from ckeditor/ck/18665-fix-changelog-generation
The template file for the changelog entries generator is included in the published package to avoid issues when using the `ckeditor5-dev-changelog-create-entry` binary script.
2 parents 3d87557 + 81e4397 commit fa3ad7d

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
# Required: Type of change.
3+
# Allowed values:
4+
# - Feature
5+
# - Fix
6+
# - Other
7+
# - Major breaking change
8+
# - Minor breaking change
9+
#
10+
# For guidance on breaking changes, see:
11+
# https://ckeditor.com/docs/ckeditor5/latest/updating/versioning-policy.html#major-and-minor-breaking-changes
12+
type: Fix
13+
14+
# Optional: Affected package(s), using short names.
15+
# Can be skipped when processing a non-mono-repository.
16+
# Example: ckeditor5-core
17+
scope:
18+
- ckeditor5-dev-changelog
19+
20+
# Optional: Issues this change closes.
21+
# Format:
22+
# - {issue-number}
23+
# - {repo-owner}/{repo-name}#{issue-number}
24+
# - Full GitHub URL
25+
closes:
26+
- https://github.com/ckeditor/ckeditor5/issues/18665
27+
---
28+
29+
The template file for the changelog entries generator is included in the published package to avoid issues when using the `ckeditor5-dev-changelog-create-entry` binary script.

packages/ckeditor5-dev-changelog/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"types": "dist/index.d.ts",
2222
"files": [
2323
"bin",
24-
"dist"
24+
"dist",
25+
"template"
2526
],
2627
"bin": {
2728
"ckeditor5-dev-changelog-create-entry": "bin/generate-template.js"

0 commit comments

Comments
 (0)