generated from TommasoAmici/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba4585d
commit dc27c7f
Showing
3 changed files
with
81 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,32 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
## [1.0.0] - 2022-01-05 | ||
|
||
### Build | ||
|
||
## [0.1.0] - 2021-06-23 | ||
- _(test)_ run jest with --ci flag | ||
|
||
### Added | ||
### Fixed | ||
|
||
- First release of plugin | ||
- _(deps)_ update dependency html-webpack-plugin to v5.5.0 | ||
- _(deps)_ update dependency webpack to v5.60.0 | ||
- _(deps)_ update dependency css-loader to v6.5.0 | ||
- _(deps)_ update dependency webpack to v5.61.0 | ||
- _(deps)_ update dependency css-loader to v6.5.1 | ||
- _(deps)_ update dependency mini-css-extract-plugin to v2.4.4 | ||
- _(deps)_ update dependency webpack to v5.62.1 | ||
- _(deps)_ update dependency webpack to v5.62.2 | ||
- _(deps)_ update dependency webpack to v5.63.0 | ||
- _(deps)_ update dependency webpack to v5.64.0 | ||
- _(deps)_ update dependency webpack to v5.64.1 | ||
- _(deps)_ update dependency mini-css-extract-plugin to v2.4.5 | ||
- _(deps)_ update dependency webpack to v5.64.2 | ||
- _(deps)_ update dependency webpack to v5.64.3 | ||
- _(deps)_ update dependency webpack to v5.64.4 | ||
- _(deps)_ update dependency webpack to v5.65.0 | ||
- _(deps)_ update dependency esbuild-loader to v2.17.0 | ||
- _(deps)_ update dependency esbuild-loader to v2.18.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# configuration file for git-cliff (0.1.0) | ||
[changelog] | ||
# changelog header | ||
header = """ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n | ||
""" | ||
# template for the changelog body | ||
# https://tera.netlify.app/docs/#introduction | ||
body = """ | ||
{% if version %}\ | ||
## [{{ version | replace(from="v", to="") }}] - {{ timestamp | date(format="%Y-%m-%d") }} | ||
{% else %}\ | ||
## [unreleased] | ||
{% endif %}\ | ||
{% for group, commits in commits | group_by(attribute="group") %} | ||
### {{ group | upper_first }} | ||
{% for commit in commits %} | ||
- {% if commit.scope -%}*({{commit.scope}})*{% endif %} {{ commit.message }}\ | ||
{% endfor %} | ||
{% endfor %}\n | ||
""" | ||
# remove the leading and trailing whitespaces from the template | ||
trim = true | ||
# changelog footer | ||
footer = "" | ||
|
||
[git] | ||
# allow only conventional commits | ||
# https://www.conventionalcommits.org | ||
conventional_commits = true | ||
# regex for parsing and grouping commits | ||
commit_parsers = [ | ||
{ message = "^chore", skip = true }, | ||
{ message = "^refactor", skip = true }, | ||
{ message = "^style", skip = true }, | ||
{ message = "^ci", group = "Build" }, | ||
{ message = "^build", group = "Build" }, | ||
{ message = "^feat", group = "Added" }, | ||
{ message = "^fix", group = "Fixed" }, | ||
{ message = "^perf", group = "Fixed" }, | ||
{ message = "^revert", group = "Removed" }, | ||
{ message = "^test", group = "Fixed" }, | ||
{ message = "^.*: add", group = "Added" }, | ||
{ message = "^.*: support", group = "Added" }, | ||
{ message = "^.*: remove", group = "Removed" }, | ||
{ message = "^.*: delete", group = "Removed" }, | ||
{ message = "^.*: fix", group = "Fixed" }, | ||
] | ||
# filter out the commits that are not matched by commit parsers | ||
filter_commits = true | ||
# glob pattern for matching git tags | ||
tag_pattern = "v[0-9]*" | ||
# regex for skipping tags | ||
skip_tags = "v0.1.0-beta.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters