Skip to content

Commit

Permalink
Fixed nothing output on standard output when using npm mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
kekyo committed Oct 15, 2024
1 parent a97277f commit 8bc6ff1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions RelaxVersioner/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ public static async Task<int> Main(string[] args)
context.Language = "NPM";
context.ReplaceInputPath = "package.json";
context.OutputPath = "package.json";
verbose = true;
}
},
{ "npmns=", "NPM dependency prefix namespaces", v =>
Expand All @@ -95,6 +96,7 @@ public static async Task<int> Main(string[] args)
context.Language = "NPM";
context.ReplaceInputPath = "package.json";
context.OutputPath = "package.json";
verbose = true;
}
},
{ "quiet", "quiet on stdout", _ => context.IsQuietOnStandardOutput = true },
Expand Down

0 comments on commit 8bc6ff1

Please sign in to comment.