frontend-guardian 0.1.11 → 0.1.13

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/dist/cli.js +1 -0
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -289,6 +289,7 @@ jobs:
289
289
  body += '\\nDuplicate groups: ' + duplicates.length + '\\n';
290
290
  }
291
291
  body += '\\n' + (score < 70 ? '❌ Below threshold' : '✅ Passed');
292
+ body += '\\n\\n---\\nRun \`npx frontend-guardian .\` in your CLI to see which files need enhancement.';
292
293
  await github.rest.issues.createComment({
293
294
  issue_number: context.issue.number,
294
295
  owner: context.repo.owner,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frontend-guardian",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "Scan frontend projects for Tailwind & component consistency (Phase 1 CLI)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,7 +13,7 @@
13
13
  "dependencies": {
14
14
  "chalk": "^5.3.0",
15
15
  "ora": "^8.0.1",
16
- "@justinmoto/frontend-guardian-core": "0.1.12"
16
+ "@justinmoto/frontend-guardian-core": "0.1.14"
17
17
  },
18
18
  "devDependencies": {
19
19
  "typescript": "^5"