@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.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. 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
- npx frontend-guardian init # add GitHub Actions workflow to your repo
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:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justinmoto/frontend-guardian-core",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "description": "Scan engine for Frontend Guardian.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",