react-doctor 0.5.6-dev.b317164 → 0.5.6-dev.b8170f8
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/dist/cli.js +3 -3
- package/package.json +4 -4
package/dist/cli.js
CHANGED
|
@@ -44040,7 +44040,7 @@ const makeNoopConsole = () => ({
|
|
|
44040
44040
|
});
|
|
44041
44041
|
//#endregion
|
|
44042
44042
|
//#region src/cli/utils/version.ts
|
|
44043
|
-
const VERSION = "0.5.6-dev.
|
|
44043
|
+
const VERSION = "0.5.6-dev.b8170f8";
|
|
44044
44044
|
//#endregion
|
|
44045
44045
|
//#region src/cli/utils/json-mode.ts
|
|
44046
44046
|
let context = null;
|
|
@@ -44400,13 +44400,13 @@ const isDevVersion = (version) => version === "0.0.0" || version.includes("-");
|
|
|
44400
44400
|
* uploads source-map artifacts under, so stack frames symbolicate. Honors the
|
|
44401
44401
|
* standard `SENTRY_RELEASE` override.
|
|
44402
44402
|
*/
|
|
44403
|
-
const resolveSentryRelease = () => process.env.SENTRY_RELEASE || `react-doctor@0.5.6-dev.
|
|
44403
|
+
const resolveSentryRelease = () => process.env.SENTRY_RELEASE || `react-doctor@0.5.6-dev.b8170f8`;
|
|
44404
44404
|
/**
|
|
44405
44405
|
* Deployment environment shown in Sentry's environment filter. Defaults to
|
|
44406
44406
|
* `production` for tagged releases and `development` for dev/unbuilt versions,
|
|
44407
44407
|
* overridable via the standard `SENTRY_ENVIRONMENT` env var.
|
|
44408
44408
|
*/
|
|
44409
|
-
const resolveSentryEnvironment = () => process.env.SENTRY_ENVIRONMENT || (isDevVersion("0.5.6-dev.
|
|
44409
|
+
const resolveSentryEnvironment = () => process.env.SENTRY_ENVIRONMENT || (isDevVersion("0.5.6-dev.b8170f8") ? "development" : "production");
|
|
44410
44410
|
/**
|
|
44411
44411
|
* Performance-tracing sample rate in `[0, 1]`. Reads `SENTRY_TRACES_SAMPLE_RATE`
|
|
44412
44412
|
* (set to `0` to disable tracing) and falls back to
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-doctor",
|
|
3
|
-
"version": "0.5.6-dev.
|
|
3
|
+
"version": "0.5.6-dev.b8170f8",
|
|
4
4
|
"description": "Your agent writes bad React. This catches it",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"accessibility",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"vscode-languageserver": "^9.0.1",
|
|
65
65
|
"vscode-languageserver-textdocument": "^1.0.12",
|
|
66
66
|
"vscode-uri": "^3.1.0",
|
|
67
|
-
"oxlint-plugin-react-doctor": "0.5.6-dev.
|
|
67
|
+
"oxlint-plugin-react-doctor": "0.5.6-dev.b8170f8"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@types/babel__code-frame": "^7.27.0",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"commander": "^14.0.3",
|
|
74
74
|
"ora": "^9.4.0",
|
|
75
75
|
"@react-doctor/api": "0.5.6",
|
|
76
|
-
"@react-doctor/
|
|
77
|
-
"@react-doctor/
|
|
76
|
+
"@react-doctor/core": "0.5.6",
|
|
77
|
+
"@react-doctor/language-server": "0.5.6"
|
|
78
78
|
},
|
|
79
79
|
"engines": {
|
|
80
80
|
"node": "^20.19.0 || >=22.13.0"
|