File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -515,7 +515,7 @@ class PublishCommand extends Command {
515
515
packUpdated ( ) {
516
516
const tracker = this . logger . newItem ( "npm pack" ) ;
517
517
518
- tracker . addWork ( this . packagesToPublish . length + 1 ) ;
518
+ tracker . addWork ( this . packagesToPublish . length ) ;
519
519
520
520
let chain = Promise . resolve ( ) ;
521
521
@@ -539,6 +539,7 @@ class PublishCommand extends Command {
539
539
540
540
pkg =>
541
541
pulseTillDone ( packDirectory ( pkg , getLocation ( pkg ) , opts ) ) . then ( packed => {
542
+ tracker . verbose ( "packed" , pkg . name , path . relative ( this . project . rootPath , getLocation ( pkg ) ) ) ;
542
543
tracker . completeWork ( 1 ) ;
543
544
544
545
// store metadata for use in this.publishPacked()
@@ -581,8 +582,8 @@ class PublishCommand extends Command {
581
582
[
582
583
pkg =>
583
584
pulseTillDone ( npmPublish ( pkg , pkg . packed . tarFilePath , opts ) ) . then ( ( ) => {
584
- tracker . completeWork ( 1 ) ;
585
585
tracker . success ( "published" , pkg . name , pkg . version ) ;
586
+ tracker . completeWork ( 1 ) ;
586
587
587
588
logPacked ( pkg . packed ) ;
588
589
You can’t perform that action at this time.
0 commit comments