We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8e4417 commit e939972Copy full SHA for e939972
2 files changed
.changeset/changelog-config.cjs
@@ -0,0 +1,11 @@
1
+const github = require("@changesets/changelog-github");
2
+const base = github.default;
3
+
4
+module.exports.default = {
5
+ getDependencyReleaseLine: base.getDependencyReleaseLine,
6
+ getReleaseLine: async (...args) => {
7
+ const line = await base.getReleaseLine(...args);
8
+ // Move "Thanks @user!" from before the description to after it
9
+ return line.replace(/ Thanks ([^!]+!)( -)(.+)/, "$2$3 (Thanks $1)");
10
+ },
11
+};
.changeset/config.json
@@ -1,7 +1,7 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
"changelog": [
- "@changesets/changelog-github",
+ "./.changeset/changelog-config.cjs",
{ "repo": "SalesforceCommerceCloud/b2c-developer-tooling" }
],
"commit": false,
0 commit comments