pubm 0.0.0-alpha.6 → 0.0.0-alpha.7
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/bin/cli.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -1701,7 +1701,7 @@ async function run(options2) {
|
|
|
1701
1701
|
body += `
|
|
1702
1702
|
|
|
1703
1703
|
${repositoryUrl}/compare/${ctx2.lastRev}...${latestTag}`;
|
|
1704
|
-
const releaseDraftUrl = new URL(
|
|
1704
|
+
const releaseDraftUrl = new URL(`${repositoryUrl}/releases/new`);
|
|
1705
1705
|
releaseDraftUrl.searchParams.set("tag", `${latestTag}`);
|
|
1706
1706
|
releaseDraftUrl.searchParams.set("body", body);
|
|
1707
1707
|
releaseDraftUrl.searchParams.set(
|
package/dist/index.cjs
CHANGED
|
@@ -1732,7 +1732,7 @@ async function run(options) {
|
|
|
1732
1732
|
body += `
|
|
1733
1733
|
|
|
1734
1734
|
${repositoryUrl}/compare/${ctx2.lastRev}...${latestTag}`;
|
|
1735
|
-
const releaseDraftUrl = new URL(
|
|
1735
|
+
const releaseDraftUrl = new URL(`${repositoryUrl}/releases/new`);
|
|
1736
1736
|
releaseDraftUrl.searchParams.set("tag", `${latestTag}`);
|
|
1737
1737
|
releaseDraftUrl.searchParams.set("body", body);
|
|
1738
1738
|
releaseDraftUrl.searchParams.set(
|
package/dist/index.js
CHANGED
|
@@ -1695,7 +1695,7 @@ async function run(options) {
|
|
|
1695
1695
|
body += `
|
|
1696
1696
|
|
|
1697
1697
|
${repositoryUrl}/compare/${ctx2.lastRev}...${latestTag}`;
|
|
1698
|
-
const releaseDraftUrl = new URL(
|
|
1698
|
+
const releaseDraftUrl = new URL(`${repositoryUrl}/releases/new`);
|
|
1699
1699
|
releaseDraftUrl.searchParams.set("tag", `${latestTag}`);
|
|
1700
1700
|
releaseDraftUrl.searchParams.set("body", body);
|
|
1701
1701
|
releaseDraftUrl.searchParams.set(
|