react-doctor 0.2.0-beta.3 → 0.2.0-beta.4

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 -1
  2. package/package.json +6 -5
package/dist/cli.js CHANGED
@@ -3805,7 +3805,7 @@ const CI_ENVIRONMENT_VARIABLES = [
3805
3805
  const isCiEnvironment = () => CI_ENVIRONMENT_VARIABLES.some((envVariable) => Boolean(process.env[envVariable])) || process.env.CI === "true";
3806
3806
  //#endregion
3807
3807
  //#region src/cli/utils/version.ts
3808
- const VERSION = "0.2.0-beta.3";
3808
+ const VERSION = "0.2.0-beta.4";
3809
3809
  //#endregion
3810
3810
  //#region src/cli/utils/json-mode.ts
3811
3811
  let context = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-doctor",
3
- "version": "0.2.0-beta.3",
3
+ "version": "0.2.0-beta.4",
4
4
  "description": "Diagnose and fix React codebases for security, performance, correctness, accessibility, bundle-size, and architecture issues",
5
5
  "keywords": [
6
6
  "accessibility",
@@ -55,15 +55,16 @@
55
55
  "oxlint": "^1.63.0",
56
56
  "picocolors": "^1.1.1",
57
57
  "prompts": "^2.4.2",
58
- "typescript": ">=5.0.4 <7"
58
+ "typescript": ">=5.0.4 <7",
59
+ "oxlint-plugin-react-doctor": "0.2.0-beta.4"
59
60
  },
60
61
  "devDependencies": {
61
62
  "@types/prompts": "^2.4.9",
62
63
  "eslint-plugin-react-hooks": "^7.1.1",
63
64
  "eslint-plugin-react-you-might-not-need-an-effect": "^0.10.1",
64
- "@react-doctor/types": "0.2.0-beta.2",
65
- "@react-doctor/core": "0.2.0-beta.3",
66
- "@react-doctor/project-info": "0.2.0-beta.2"
65
+ "@react-doctor/core": "0.2.0-beta.4",
66
+ "@react-doctor/project-info": "0.2.0-beta.2",
67
+ "@react-doctor/types": "0.2.0-beta.2"
67
68
  },
68
69
  "peerDependencies": {
69
70
  "eslint-plugin-react-hooks": "^6 || ^7",