quick-gate 0.2.0-alpha.2 → 0.2.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 (3) hide show
  1. package/README.md +4 -4
  2. package/package.json +7 -4
  3. package/src/cli.js +1 -1
package/README.md CHANGED
@@ -4,14 +4,14 @@
4
4
  [![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
5
5
  [![Node.js >= 18](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org)
6
6
 
7
- Deterministic quality gate CLI for Next.js repositories with bounded auto-repair and explicit escalation evidence.
7
+ Deterministic quality gate CLI for TypeScript and ESLint projects with bounded auto-repair and explicit escalation evidence. Works with Next.js, React, Vue, Svelte, Angular, or any Node.js project with TypeScript.
8
8
 
9
9
  ## Quick Start
10
10
 
11
- Requires **Node.js >= 18** and a Next.js project with dependencies installed (`npm ci`).
11
+ Requires **Node.js >= 18** and a project with dependencies installed (`npm ci`).
12
12
 
13
13
  ```bash
14
- # From your Next.js project directory:
14
+ # From your project directory:
15
15
  npx quick-gate run --mode canary --changed-files <path>
16
16
 
17
17
  # Or install globally:
@@ -28,7 +28,7 @@ quick-gate run --mode canary --changed-files /tmp/changed.txt
28
28
 
29
29
  ## What It Does
30
30
 
31
- Quick Gate runs up to four deterministic quality gates on your Next.js project. In **canary** mode (default): lint + typecheck + lighthouse. In **full** mode: all four including build.
31
+ Quick Gate runs up to four deterministic quality gates on your project. In **canary** mode (default): lint + typecheck + lighthouse. In **full** mode: all four including build.
32
32
 
33
33
  1. **lint** -- runs your ESLint config
34
34
  2. **typecheck** -- runs TypeScript compiler
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "quick-gate",
3
- "version": "0.2.0-alpha.2",
4
- "description": "Deterministic quality gate CLI for Next.js with bounded auto-repair and escalation evidence",
3
+ "version": "0.2.0",
4
+ "description": "Deterministic quality gate CLI for TypeScript and ESLint projects with bounded auto-repair and escalation evidence",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "quick-gate": "src/cli.js"
@@ -32,11 +32,14 @@
32
32
  "lint",
33
33
  "typecheck",
34
34
  "lighthouse",
35
- "nextjs",
36
35
  "auto-repair",
37
36
  "deterministic",
38
37
  "eslint",
39
- "typescript"
38
+ "typescript",
39
+ "nextjs",
40
+ "react",
41
+ "vue",
42
+ "svelte"
40
43
  ],
41
44
  "dependencies": {
42
45
  "ajv": "^8.17.1",
package/src/cli.js CHANGED
@@ -20,7 +20,7 @@ function parseArgs(argv) {
20
20
  }
21
21
 
22
22
  function usage() {
23
- console.log(`Quick Gate v0.2.0-alpha.2
23
+ console.log(`Quick Gate v0.2.0
24
24
 
25
25
  Commands:
26
26
  quick-gate run --mode canary|full --changed-files <path>