ui-code-health-check 0.0.2 → 0.1.0

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 CHANGED
@@ -1,4 +1,4 @@
1
- # TESTING NEW PACKAGE, NOT FOR USE YET
1
+ ## This package is at testing phase
2
2
 
3
3
  # UI Code Health Check
4
4
 
@@ -38,7 +38,7 @@ Or add it as a script in your `package.json` (example):
38
38
  ```json
39
39
  {
40
40
  "scripts": {
41
- "ch": "npx ch"
41
+ "your-script-name": "ch"
42
42
  }
43
43
  }
44
44
  ```
@@ -58,7 +58,7 @@ If a script is missing, that step is skipped.
58
58
  Then run:
59
59
 
60
60
  ```bash
61
- npm run ch
61
+ npm run your-script-name
62
62
  ```
63
63
 
64
64
  ## Configuration
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/juandrepanther/ui-code-health-check.git"
8
8
  },
9
- "version": "0.0.2",
9
+ "version": "0.1.0",
10
10
  "description": "A package to perform a series of code quality checks including linting, testing, spell checking, TypeScript checking, and building.",
11
11
  "main": "dist/index.js",
12
12
  "bin": {
@@ -34,6 +34,7 @@
34
34
  "typescript": "^5.9.3"
35
35
  },
36
36
  "keywords": [
37
+ "ui",
37
38
  "code",
38
39
  "health",
39
40
  "check"
package/src/index.ts CHANGED
@@ -14,7 +14,7 @@ const steps = [
14
14
  const start = Date.now()
15
15
 
16
16
  console.log(chalk.bgBlue.white.bold(msg.HEADER))
17
- console.log(chalk.white.bold(msg.INFO('1.0.0', 'juandrepanther')))
17
+ console.log(chalk.white.bold(msg.INFO('0.1.0', 'juandrepanther')))
18
18
 
19
19
  let scripts: Record<string, string> = {}
20
20
  try {