@codacy/gate-cli 0.6.0 → 0.7.0

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.
Files changed (2) hide show
  1. package/bin/gate.js +1 -1
  2. package/package.json +2 -2
package/bin/gate.js CHANGED
@@ -12448,7 +12448,7 @@ function registerInitCommand(program2) {
12448
12448
  }
12449
12449
 
12450
12450
  // src/cli.ts
12451
- program.name("gate").description("CLI for GATE.md quality gate service").version("0.4.0").option("--token <token>", "Override authentication token").option("--service-url <url>", "Override service URL").option("--verbose", "Log HTTP requests/responses to stderr");
12451
+ program.name("gate").description("CLI for GATE.md quality gate service").version("0.7.0").option("--token <token>", "Override authentication token").option("--service-url <url>", "Override service URL").option("--verbose", "Log HTTP requests/responses to stderr");
12452
12452
  registerAuthCommands(program);
12453
12453
  registerHooksCommands(program);
12454
12454
  registerIntentCommands(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codacy/gate-cli",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "CLI for GATE.md quality gate service",
5
5
  "bin": {
6
6
  "gate": "./bin/gate.js"
@@ -15,7 +15,7 @@
15
15
  "node": ">=20"
16
16
  },
17
17
  "scripts": {
18
- "build": "esbuild src/cli.ts --bundle --platform=node --target=node20 --outfile=bin/gate.js --format=cjs --banner:js=\"#!/usr/bin/env node\"",
18
+ "build": "node scripts/build.js",
19
19
  "test": "node --import tsx --test $(find tests -name '*.test.ts' | sort)",
20
20
  "typecheck": "tsc --noEmit",
21
21
  "prepublishOnly": "npm run typecheck && npm run build"