frontend-guardian 0.1.5 → 0.1.6

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 +2 -1
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -217,7 +217,8 @@ function printResult(projectName, result) {
217
217
  console.log("");
218
218
  }
219
219
  console.log(line);
220
- console.log(chalk.bold(" Scan Complete") + "\n");
220
+ console.log(chalk.bold(" Scan Complete"));
221
+ console.log(chalk.gray(" © Justinmoto · Frontend Guardian") + "\n");
221
222
  }
222
223
  async function main() {
223
224
  const arg = process.argv[2];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frontend-guardian",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
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.6"
16
+ "@justinmoto/frontend-guardian-core": "0.1.7"
17
17
  },
18
18
  "devDependencies": {
19
19
  "typescript": "^5"