Skip to content

Commit 8bc6ff1

Browse files
committed
Fixed nothing output on standard output when using npm mode.
1 parent a97277f commit 8bc6ff1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

RelaxVersioner/Program.cs

+2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ public static async Task<int> Main(string[] args)
8787
context.Language = "NPM";
8888
context.ReplaceInputPath = "package.json";
8989
context.OutputPath = "package.json";
90+
verbose = true;
9091
}
9192
},
9293
{ "npmns=", "NPM dependency prefix namespaces", v =>
@@ -95,6 +96,7 @@ public static async Task<int> Main(string[] args)
9596
context.Language = "NPM";
9697
context.ReplaceInputPath = "package.json";
9798
context.OutputPath = "package.json";
99+
verbose = true;
98100
}
99101
},
100102
{ "quiet", "quiet on stdout", _ => context.IsQuietOnStandardOutput = true },

0 commit comments

Comments
 (0)