react-doctor 0.5.6-dev.15238de → 0.5.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 +5 -5
  2. package/package.json +4 -4
package/dist/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="fd7e91f8-8458-50a2-99d9-a1ea8f8bfaff")}catch(e){}}();
2
+ !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="79c9f922-1713-5894-a0aa-142d0cd9c7ba")}catch(e){}}();
3
3
  import { createRequire } from "node:module";
4
4
  import * as NodeChildProcess from "node:child_process";
5
5
  import { execFile, execFileSync, spawn, spawnSync } from "node:child_process";
@@ -43972,7 +43972,7 @@ const makeNoopConsole = () => ({
43972
43972
  });
43973
43973
  //#endregion
43974
43974
  //#region src/cli/utils/version.ts
43975
- const VERSION = "0.5.6-dev.15238de";
43975
+ const VERSION = "0.5.6";
43976
43976
  //#endregion
43977
43977
  //#region src/cli/utils/json-mode.ts
43978
43978
  let context = null;
@@ -44330,13 +44330,13 @@ const isDevVersion = (version) => version === "0.0.0" || version.includes("-");
44330
44330
  * uploads source-map artifacts under, so stack frames symbolicate. Honors the
44331
44331
  * standard `SENTRY_RELEASE` override.
44332
44332
  */
44333
- const resolveSentryRelease = () => process.env.SENTRY_RELEASE || `react-doctor@0.5.6-dev.15238de`;
44333
+ const resolveSentryRelease = () => process.env.SENTRY_RELEASE || `react-doctor@0.5.6`;
44334
44334
  /**
44335
44335
  * Deployment environment shown in Sentry's environment filter. Defaults to
44336
44336
  * `production` for tagged releases and `development` for dev/unbuilt versions,
44337
44337
  * overridable via the standard `SENTRY_ENVIRONMENT` env var.
44338
44338
  */
44339
- const resolveSentryEnvironment = () => process.env.SENTRY_ENVIRONMENT || (isDevVersion("0.5.6-dev.15238de") ? "development" : "production");
44339
+ const resolveSentryEnvironment = () => process.env.SENTRY_ENVIRONMENT || (isDevVersion("0.5.6") ? "development" : "production");
44340
44340
  /**
44341
44341
  * Performance-tracing sample rate in `[0, 1]`. Reads `SENTRY_TRACES_SAMPLE_RATE`
44342
44342
  * (set to `0` to disable tracing) and falls back to
@@ -53948,4 +53948,4 @@ Promise.resolve().then(() => assertNoRemovedFlags(process.argv)).then(() => prog
53948
53948
  export {};
53949
53949
 
53950
53950
  //# sourceMappingURL=cli.js.map
53951
- //# debugId=fd7e91f8-8458-50a2-99d9-a1ea8f8bfaff
53951
+ //# debugId=79c9f922-1713-5894-a0aa-142d0cd9c7ba
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-doctor",
3
- "version": "0.5.6-dev.15238de",
3
+ "version": "0.5.6",
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.15238de"
67
+ "oxlint-plugin-react-doctor": "0.5.6"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@types/babel__code-frame": "^7.27.0",
@@ -72,9 +72,9 @@
72
72
  "@xterm/headless": "^6.0.0",
73
73
  "commander": "^14.0.3",
74
74
  "ora": "^9.4.0",
75
+ "@react-doctor/language-server": "0.5.6",
75
76
  "@react-doctor/api": "0.5.6",
76
- "@react-doctor/core": "0.5.6",
77
- "@react-doctor/language-server": "0.5.6"
77
+ "@react-doctor/core": "0.5.6"
78
78
  },
79
79
  "engines": {
80
80
  "node": "^20.19.0 || >=22.13.0"