Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/commands/publish.js')
-rw-r--r--lib/commands/publish.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/commands/publish.js b/lib/commands/publish.js
index 3d17866a6..64b6dfc51 100644
--- a/lib/commands/publish.js
+++ b/lib/commands/publish.js
@@ -114,7 +114,10 @@ class Publish extends BaseCommand {
}
}
- log.notice('', `Publishing to ${outputRegistry}${dryRun ? ' (dry-run)' : ''}`)
+ log.notice(
+ '',
+ `Publishing to ${outputRegistry} with tag ${defaultTag}${dryRun ? ' (dry-run)' : ''}`
+ )
if (!dryRun) {
await otplease(this.npm, opts, opts => libpub(manifest, tarballData, opts))