@codacy/verity-cli 0.32.6-experimental.833e71a → 0.32.6-experimental.c3814a1
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 +4 -4
- package/package.json +1 -1
package/bin/verity.js
CHANGED
|
@@ -21851,7 +21851,7 @@ function channelSilence(input) {
|
|
|
21851
21851
|
// src/lib/cli-version.ts
|
|
21852
21852
|
function cliVersion() {
|
|
21853
21853
|
try {
|
|
21854
|
-
return true ? "0.32.6-experimental.
|
|
21854
|
+
return true ? "0.32.6-experimental.c3814a1" : "dev";
|
|
21855
21855
|
} catch {
|
|
21856
21856
|
return "dev";
|
|
21857
21857
|
}
|
|
@@ -28452,7 +28452,7 @@ function registerInitCommand(program2) {
|
|
|
28452
28452
|
...telemetryChoice ? { telemetry: telemetryChoice } : {},
|
|
28453
28453
|
init: {
|
|
28454
28454
|
completed_at: (/* @__PURE__ */ new Date()).toISOString(),
|
|
28455
|
-
cli_version: true ? "0.32.6-experimental.
|
|
28455
|
+
cli_version: true ? "0.32.6-experimental.c3814a1" : "dev"
|
|
28456
28456
|
}
|
|
28457
28457
|
});
|
|
28458
28458
|
} catch (err) {
|
|
@@ -29367,8 +29367,8 @@ function registerTelemetryCommands(program2) {
|
|
|
29367
29367
|
}
|
|
29368
29368
|
|
|
29369
29369
|
// src/cli.ts
|
|
29370
|
-
program.name("verity").description("CLI for Verity quality gate service").version("0.32.6-experimental.
|
|
29371
|
-
installStderrLog(actionCommand.name(), process.argv.slice(2), "0.32.6-experimental.
|
|
29370
|
+
program.name("verity").description("CLI for Verity quality gate service").version("0.32.6-experimental.c3814a1").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) => {
|
|
29371
|
+
installStderrLog(actionCommand.name(), process.argv.slice(2), "0.32.6-experimental.c3814a1");
|
|
29372
29372
|
setUserNamedServiceUrl(program.opts().serviceUrl);
|
|
29373
29373
|
try {
|
|
29374
29374
|
await foldLegacyLocalCredential();
|
package/package.json
CHANGED