@react-native/debugger-shell 0.82.0-nightly-20250727-df3f0967b → 0.82.0-nightly-20250729-e17e3e3f3

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.
@@ -71,7 +71,7 @@ app.whenReady().then(() => {
71
71
  "second-instance",
72
72
  (event, electronArgv, workingDirectory, additionalData) => {
73
73
  handleLaunchArgs(additionalData.argv);
74
- }
74
+ },
75
75
  );
76
76
  });
77
77
  app.on("window-all-closed", function () {
@@ -5,7 +5,7 @@ contextBridge.executeInMainWorld({
5
5
  func: (ipcDevTools) => {
6
6
  let didDecorateInspectorFrontendHostInstance = false;
7
7
  globalThis.reactNativeDecorateInspectorFrontendHostInstance = (
8
- InspectorFrontendHostInstance
8
+ InspectorFrontendHostInstance,
9
9
  ) => {
10
10
  didDecorateInspectorFrontendHostInstance = true;
11
11
  InspectorFrontendHostInstance.bringToFront = () => {
@@ -16,7 +16,7 @@ contextBridge.executeInMainWorld({
16
16
  if (!didDecorateInspectorFrontendHostInstance) {
17
17
  console.error(
18
18
  "reactNativeDecorateInspectorFrontendHostInstance was not called at startup. " +
19
- "This version of the DevTools frontend may not be compatible with @react-native/debugger-shell."
19
+ "This version of the DevTools frontend may not be compatible with @react-native/debugger-shell.",
20
20
  );
21
21
  }
22
22
  });
@@ -10,6 +10,6 @@
10
10
 
11
11
  declare function unstable_spawnDebuggerShellWithArgs(
12
12
  args: string[],
13
- $$PARAM_1$$?: Readonly<{ mode?: "syncThenExit" | "detached" }>
13
+ $$PARAM_1$$?: Readonly<{ mode?: "syncThenExit" | "detached" }>,
14
14
  ): Promise<void>;
15
15
  export { unstable_spawnDebuggerShellWithArgs };
@@ -8,7 +8,7 @@ exports.unstable_spawnDebuggerShellWithArgs =
8
8
  const { spawn } = require("cross-spawn");
9
9
  async function unstable_spawnDebuggerShellWithArgs(
10
10
  args,
11
- { mode = "detached" } = {}
11
+ { mode = "detached" } = {},
12
12
  ) {
13
13
  const electronPath = require("electron");
14
14
  return new Promise((resolve, reject) => {
@@ -19,7 +19,7 @@ async function unstable_spawnDebuggerShellWithArgs(
19
19
  stdio: "inherit",
20
20
  windowsHide: true,
21
21
  detached: mode === "detached",
22
- }
22
+ },
23
23
  );
24
24
  if (mode === "detached") {
25
25
  child.on("spawn", () => {
@@ -29,8 +29,8 @@ async function unstable_spawnDebuggerShellWithArgs(
29
29
  if (code !== 0) {
30
30
  reject(
31
31
  new Error(
32
- `Failed to open debugger shell: ${electronPath} exited with code ${code}`
33
- )
32
+ `Failed to open debugger shell: ${electronPath} exited with code ${code}`,
33
+ ),
34
34
  );
35
35
  }
36
36
  });
@@ -16,7 +16,7 @@ declare function unstable_spawnDebuggerShellWithArgs(
16
16
  // In 'detached' mode, the spawned process will be detached from the current process and the current process will
17
17
  // continue to run normally.
18
18
  mode?: "syncThenExit" | "detached",
19
- }>
19
+ }>,
20
20
  ): Promise<void>;
21
21
 
22
22
  export { unstable_spawnDebuggerShellWithArgs };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native/debugger-shell",
3
- "version": "0.82.0-nightly-20250727-df3f0967b",
3
+ "version": "0.82.0-nightly-20250729-e17e3e3f3",
4
4
  "description": "Experimental debugger shell for React Native for use with @react-native/debugger-frontend",
5
5
  "keywords": [
6
6
  "react-native",