Skip to content

Commit 58c90a1

Browse files
author
DoubleU23
committed
fix(changelog): added changelog title
1 parent 0f49897 commit 58c90a1

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,13 @@
4747
[
4848
"@semantic-release/changelog",
4949
{
50-
"changelogFile": "CHANGELOG.md"
50+
"changelogFile": "CHANGELOG.md",
51+
"changelogTitle": "# Changelog\n> generated with [@semantic-release/changelog](https://github.com/semantic-release/changelog)"
5152
}
5253
],
5354
["@semantic-release/git", {
5455
"assets": ["dist/**/*.{js,css}", "CHANGELOG.md", "LINCENSE", "package.json", "gitbash-output.png", "README.md"],
55-
"message": "chore(release): :bookmark: ${nextRelease.version} :package: :rocket:\n\n${nextRelease.notes}"
56+
"message": "chore(release): :bookmark: ${nextRelease.version} :package: package :rocket: published\n\n${nextRelease.notes}"
5657
}],
5758
"@semantic-release/npm",
5859
"@semantic-release/github"

utils/babelRegister.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
'use strict'
22

33
var path = require('path'),
4-
pathNodeModules = path.normalize(path.resolve(__dirname, '..', 'node_modules'))
4+
pathNodeModules = path.normalize(
5+
path.resolve(__dirname, '..', 'node_modules')
6+
)
57

68
require('@babel/register')({ignore: [pathNodeModules]})

0 commit comments

Comments
 (0)