@taiga-ui/auto-changelog-config 0.192.0 → 0.194.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/auto-changelog-config",
3
- "version": "0.192.0",
3
+ "version": "0.194.0",
4
4
  "description": "Taiga UI auto-changelog config",
5
5
  "keywords": [
6
6
  "auto-changelog"
package/setup.js CHANGED
@@ -20,21 +20,4 @@ module.exports = function (
20
20
 
21
21
  return string.replace('v', '');
22
22
  });
23
-
24
- Handlebars.registerHelper(
25
- 'ifeq',
26
- function (
27
- /** @type {any} */ a,
28
- /** @type {any} */ b,
29
- /** @type {{ fn: (arg0: any) => any; inverse: (arg0: any) => any; }} */ options,
30
- ) {
31
- if (a === b) {
32
- // @ts-ignore
33
- return options.fn(this);
34
- }
35
-
36
- // @ts-ignore
37
- return options.inverse(this);
38
- },
39
- );
40
23
  };
@@ -1,16 +1,10 @@
1
+ # Changelog
1
2
  {{! prettier-ignore }}
2
- {{#each releases}}
3
- {{#ifeq @index 0}}
4
- {{#if tag}}
5
-
6
- # Changelog
7
- {{! prettier-ignore }}
8
- All notable changes to this project will be documented in this file. See
9
- [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
10
-
11
- {{/if}}
12
- {{/ifeq}}
3
+ All notable changes to this project will be documented in this file. See
4
+ [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
13
5
 
6
+ {{! prettier-ignore }}
7
+ {{#each releases}}
14
8
  {{#if tag}}
15
9
  ##{{#unless major}}#{{/unless}} [{{#replaceTitle}}{{title}}{{/replaceTitle}}]({{href}}) ({{isoDate}})
16
10
  {{/if}}
@@ -0,0 +1,23 @@
1
+ {{! prettier-ignore }}
2
+ {{#each releases}}
3
+ {{#if tag}}
4
+ ##{{#unless major}}#{{/unless}} [{{#replaceTitle}}{{title}}{{/replaceTitle}}]({{href}}) ({{isoDate}})
5
+ {{/if}}
6
+
7
+ {{#if summary}}
8
+ {{summary}}
9
+ {{/if}}
10
+
11
+ {{#commit-list commits heading='### ⚠ BREAKING CHANGES' message='[bB]reaking [cC]hange:|[bB]reaking:' }}
12
+ - {{#replaceCommit}}{{subject}}{{/replaceCommit}} [({{shorthash}})]({{href}})
13
+ {{/commit-list}}
14
+
15
+ {{#commit-list commits heading='### 🚀 Features' message='^[fF]eat:|[fF]eat\(|^[rR]efactor:|^[rR]efactor\(' exclude='[bB]reaking [cC]hange:|[bB]reaking:'}}
16
+ - {{#replaceCommit}}{{subject}}{{/replaceCommit}} [({{shorthash}})]({{href}})
17
+ {{/commit-list}}
18
+
19
+ {{#commit-list commits heading='### 🐞 Bug Fixes' message='^[fF]ix:|^[fF]ix\(|^[pP]erf:|^[pP]erf\(' exclude='[bB]reaking [cC]hange:|[bB]reaking:'}}
20
+ - {{#replaceCommit}}{{subject}}{{/replaceCommit}} [({{shorthash}})]({{href}})
21
+ {{/commit-list}}
22
+
23
+ {{/each}}