@orderly.network/npm-release 0.0.6-alpha.0 → 0.0.6
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/index.mjs +2 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -270,7 +270,7 @@ function getNotifyMessage({ success, error, publishedToInternal }) {
|
|
|
270
270
|
const linkedPkg = `<${packageUrl}|${pkgName}@${version}>`;
|
|
271
271
|
|
|
272
272
|
if (success && publishedToInternal) {
|
|
273
|
-
const publicUrl = packageUrl
|
|
273
|
+
const publicUrl = packageUrl;
|
|
274
274
|
const internalUrl = getInternalPackagePageUrl(pkgName);
|
|
275
275
|
const publicLink = `<${publicUrl}|${pkgName}@${version}>`;
|
|
276
276
|
const internalLink = internalUrl
|
|
@@ -283,7 +283,7 @@ function getNotifyMessage({ success, error, publishedToInternal }) {
|
|
|
283
283
|
return `packages published successfully (${registryLabel} registry):\n${linkedPkg}`;
|
|
284
284
|
}
|
|
285
285
|
|
|
286
|
-
// failed
|
|
286
|
+
// publish failed
|
|
287
287
|
return `packages publish failed (${registryLabel} registry):\n${linkedPkg}\n${
|
|
288
288
|
error || "Unknown error"
|
|
289
289
|
}`;
|