@codacy/verity-cli 0.29.4-experimental.988bfb7 → 0.29.4-experimental.c9a3712
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
|
@@ -17216,7 +17216,7 @@ function channelSilence(input) {
|
|
|
17216
17216
|
// src/lib/cli-version.ts
|
|
17217
17217
|
function cliVersion() {
|
|
17218
17218
|
try {
|
|
17219
|
-
return true ? "0.29.4-experimental.
|
|
17219
|
+
return true ? "0.29.4-experimental.c9a3712" : "dev";
|
|
17220
17220
|
} catch {
|
|
17221
17221
|
return "dev";
|
|
17222
17222
|
}
|
|
@@ -21999,8 +21999,8 @@ function registerTelemetryCommands(program2) {
|
|
|
21999
21999
|
}
|
|
22000
22000
|
|
|
22001
22001
|
// src/cli.ts
|
|
22002
|
-
program.name("verity").description("CLI for Verity quality gate service").version("0.29.4-experimental.
|
|
22003
|
-
installStderrLog(actionCommand.name(), process.argv.slice(2), "0.29.4-experimental.
|
|
22002
|
+
program.name("verity").description("CLI for Verity quality gate service").version("0.29.4-experimental.c9a3712").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) => {
|
|
22003
|
+
installStderrLog(actionCommand.name(), process.argv.slice(2), "0.29.4-experimental.c9a3712");
|
|
22004
22004
|
setUserNamedServiceUrl(program.opts().serviceUrl);
|
|
22005
22005
|
try {
|
|
22006
22006
|
await foldLegacyLocalCredential();
|
package/package.json
CHANGED