@taiga-ui/release-it-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.
Files changed (2) hide show
  1. package/index.js +8 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -3,7 +3,7 @@ const path = require('node:path').resolve(
3
3
  'node_modules/@taiga-ui/auto-changelog-config',
4
4
  );
5
5
 
6
- const changelog = `npx auto-changelog -c ${path}/index.json --template ${path}/changelog-template.hbs --handlebars-setup ${path}/setup.js`;
6
+ const changelog = `npx auto-changelog -c ${path}/index.json --handlebars-setup ${path}/setup.js`;
7
7
 
8
8
  /* eslint-disable no-template-curly-in-string */
9
9
  module.exports = {
@@ -13,12 +13,17 @@ module.exports = {
13
13
  tagName: 'v${version}',
14
14
  },
15
15
  github: {
16
+ comments: {
17
+ issue: ':rocket: _This issue has been resolved in v${version}. See [${releaseName}](${releaseUrl}) for release notes._',
18
+ pr: ':rocket: _This pull request is included in v${version}. See [${releaseName}](${releaseUrl}) for release notes._',
19
+ submit: true,
20
+ },
16
21
  release: true,
17
- releaseNotes: `${changelog} --unreleased-only --stdout`,
22
+ releaseNotes: `${changelog} --template ${path}/templates/note.hbs --unreleased-only --stdout --starting-version $\{version}`,
18
23
  },
19
24
  hooks: {
20
25
  'after:bump': [
21
- `${changelog} -p`,
26
+ `${changelog} --template ${path}/templates/changelog.hbs -p`,
22
27
  'npx prettier CHANGELOG.md --write',
23
28
  'git add CHANGELOG.md',
24
29
  'npm run bump || echo "Missing script"',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/release-it-config",
3
- "version": "0.192.0",
3
+ "version": "0.194.0",
4
4
  "description": "Taiga UI release-it config",
5
5
  "keywords": [
6
6
  "release-it"