react-doctor 0.2.0-beta.5 → 0.2.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.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: react-doctor
3
- description: Use when finishing a feature, fixing a bug, before committing React code, or when the user wants to improve code quality or clean up a codebase. Checks for score regression. Covers lint, dead code, accessibility, bundle size, architecture diagnostics.
3
+ description: Use when finishing a feature, fixing a bug, before committing React code, or when the user wants to improve code quality or clean up a codebase. Checks for score regression. Covers lint, accessibility, bundle size, architecture diagnostics.
4
4
  version: "1.0.0"
5
5
  ---
6
6
 
@@ -10,18 +10,18 @@ Scans React codebases for security, performance, correctness, and architecture i
10
10
 
11
11
  ## After making React code changes:
12
12
 
13
- Run `npx -y react-doctor@latest . --verbose --diff` and check the score did not regress.
13
+ Run `npx react-doctor@latest --verbose --diff` and check the score did not regress.
14
14
 
15
15
  If the score dropped, fix the regressions before committing.
16
16
 
17
17
  ## For general cleanup or code improvement:
18
18
 
19
- Run `npx -y react-doctor@latest . --verbose` (without `--diff`) to scan the full codebase. Fix issues by severity — errors first, then warnings.
19
+ Run `npx react-doctor@latest --verbose` (without `--diff`) to scan the full codebase. Fix issues by severity — errors first, then warnings.
20
20
 
21
21
  ## Command
22
22
 
23
23
  ```bash
24
- npx -y react-doctor@latest . --verbose --diff
24
+ npx react-doctor@latest --verbose --diff
25
25
  ```
26
26
 
27
27
  | Flag | Purpose |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-doctor",
3
- "version": "0.2.0-beta.5",
3
+ "version": "0.2.0",
4
4
  "description": "Diagnose and fix React codebases for security, performance, correctness, accessibility, bundle-size, and architecture issues",
5
5
  "keywords": [
6
6
  "accessibility",
@@ -56,15 +56,15 @@
56
56
  "picocolors": "^1.1.1",
57
57
  "prompts": "^2.4.2",
58
58
  "typescript": ">=5.0.4 <7",
59
- "oxlint-plugin-react-doctor": "0.2.0-beta.5"
59
+ "oxlint-plugin-react-doctor": "0.2.0"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@types/prompts": "^2.4.9",
63
63
  "eslint-plugin-react-hooks": "^7.1.1",
64
64
  "eslint-plugin-react-you-might-not-need-an-effect": "^0.10.1",
65
- "@react-doctor/types": "0.2.0-beta.3",
66
- "@react-doctor/project-info": "0.2.0-beta.3",
67
- "@react-doctor/core": "0.2.0-beta.5"
65
+ "@react-doctor/core": "0.2.0",
66
+ "@react-doctor/project-info": "0.2.0",
67
+ "@react-doctor/types": "0.2.0"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "eslint-plugin-react-hooks": "^6 || ^7",