@codacy/verity-cli 0.31.0-experimental.6bc3b1b → 0.31.0-experimental.d699160
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/bin/verity.js +3 -3
- package/package.json +1 -1
package/bin/verity.js
CHANGED
|
@@ -18452,7 +18452,7 @@ function channelSilence(input) {
|
|
|
18452
18452
|
// src/lib/cli-version.ts
|
|
18453
18453
|
function cliVersion() {
|
|
18454
18454
|
try {
|
|
18455
|
-
return true ? "0.31.0-experimental.
|
|
18455
|
+
return true ? "0.31.0-experimental.d699160" : "dev";
|
|
18456
18456
|
} catch {
|
|
18457
18457
|
return "dev";
|
|
18458
18458
|
}
|
|
@@ -23580,8 +23580,8 @@ function registerTelemetryCommands(program2) {
|
|
|
23580
23580
|
}
|
|
23581
23581
|
|
|
23582
23582
|
// src/cli.ts
|
|
23583
|
-
program.name("verity").description("CLI for Verity quality gate service").version("0.31.0-experimental.
|
|
23584
|
-
installStderrLog(actionCommand.name(), process.argv.slice(2), "0.31.0-experimental.
|
|
23583
|
+
program.name("verity").description("CLI for Verity quality gate service").version("0.31.0-experimental.d699160").option("--token <token>", "Override authentication token").option("--service-url <url>", "Override service URL").option("--verbose", "Log HTTP requests/responses to stderr").hook("preAction", async (_thisCommand, actionCommand) => {
|
|
23584
|
+
installStderrLog(actionCommand.name(), process.argv.slice(2), "0.31.0-experimental.d699160");
|
|
23585
23585
|
setUserNamedServiceUrl(program.opts().serviceUrl);
|
|
23586
23586
|
try {
|
|
23587
23587
|
await foldLegacyLocalCredential();
|
package/package.json
CHANGED