@justinmoto/frontend-guardian-core 0.1.16 → 0.1.18
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 +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,8 +9,14 @@ Use this package only if you want to run the scanner from your own Node code (pr
|
|
|
9
9
|
**Most users:** run the CLI instead (no install):
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
+
# Scan current folder for Tailwind/component consistency
|
|
12
13
|
npx frontend-guardian .
|
|
13
|
-
|
|
14
|
+
|
|
15
|
+
# Add GitHub Actions workflow to run the check on push/PR
|
|
16
|
+
npx frontend-guardian init
|
|
17
|
+
|
|
18
|
+
# Same scan + AI fix suggestions
|
|
19
|
+
npx frontend-guardian . --suggest
|
|
14
20
|
```
|
|
15
21
|
|
|
16
22
|
**Install (optional)** — only if you're embedding the scanner in your app:
|