equall-cli 0.1.0 → 0.1.2
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/LICENSE +1 -1
- package/README.md +13 -1
- package/dist/chunk-JMFHJMBB.js +40482 -0
- package/dist/cli.js +6411 -10
- package/dist/index.js +2 -1
- package/package.json +12 -9
- package/dist/chunk-UA3BFAGG.js +0 -690
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -24,6 +24,18 @@ equall scan .
|
|
|
24
24
|
2 critical 2 serious 19 moderate 0 minor
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
## Install
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npm install -g equall-cli
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Or run directly with npx:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx equall scan .
|
|
37
|
+
```
|
|
38
|
+
|
|
27
39
|
## Why Equall?
|
|
28
40
|
|
|
29
41
|
Accessibility tools today fall into two camps: dev tools that show violations without context (axe, Lighthouse), and enterprise platforms that cost $75K+/year (Deque, Siteimprove). Nothing in between.
|
|
@@ -93,7 +105,7 @@ Conformance (A / AA / AAA) is evaluated strictly against your `--level` target.
|
|
|
93
105
|
## Programmatic API
|
|
94
106
|
|
|
95
107
|
```typescript
|
|
96
|
-
import { runScan } from 'equall'
|
|
108
|
+
import { runScan } from 'equall-cli'
|
|
97
109
|
|
|
98
110
|
const result = await runScan({
|
|
99
111
|
path: './my-project',
|