Skip to content

Commit

Permalink
chore: fix changelogithub patch
Browse files Browse the repository at this point in the history
  • Loading branch information
cedoor committed Mar 8, 2024
1 parent 80a21bb commit 93780b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .yarn/patches/changelogithub-npm-0.13.3-1783949906.patch
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ index 8d005a0e1896ec10e6d09755b5859587882e3f93..580cb17bb6be135b45e8060155d0eb5c
let padding = "";
let prefix = "";
- const scopeText = `**${options.scopeMap[scope] || scope}**`;
+ const url = `https://github.com/${options.github}/tree/main/packages/${scope}`;
+ const scopeText = `[**@${options.github.split("/")[1]}/${options.scopeMap[scope] || scope}**](${url})`;
+ const url = `https://github.com/${options.repo}/tree/main/packages/${scope}`;
+ const scopeText = `[**@${options.repo.split("/")[1]}/${options.scopeMap[scope] || scope}**](${url})`;
if (scope && (useScopeGroup === true || useScopeGroup === "multiple" && scopes[scope].length > 1)) {
lines.push(`- ${scopeText}:`);
padding = " ";

0 comments on commit 93780b7

Please sign in to comment.