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.
- package/README.md +4 -4
- package/package.json +7 -4
- package/src/cli.js +1 -1
package/README.md
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
[](https://nodejs.org)
|
|
6
6
|
|
|
7
|
-
Deterministic quality gate CLI for
|
|
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
|
|
11
|
+
Requires **Node.js >= 18** and a project with dependencies installed (`npm ci`).
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
# From your
|
|
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
|
|
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
|
|
4
|
-
"description": "Deterministic quality gate CLI for
|
|
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",
|