@nuxt/devtools-kit-nightly 2.3.0-29030700.4e9da7f → 2.3.1-29049449.84e96a6

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/index.cjs CHANGED
@@ -84,9 +84,7 @@ function startSubprocess(execaOptions, tabOptions, nuxt = kit.useNuxt()) {
84
84
  });
85
85
  }
86
86
  return {
87
- getProcess() {
88
- return process;
89
- },
87
+ getProcess: () => process,
90
88
  terminate,
91
89
  restart,
92
90
  clear
package/dist/index.d.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
2
  import { BirpcGroup } from 'birpc';
3
+ import { ExecaChildProcess } from 'execa';
3
4
  import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.BMivX6Xf.cjs';
4
- import { execa } from 'execa';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'unimport';
@@ -24,7 +24,7 @@ declare function refreshCustomTabs(nuxt?: _nuxt_schema.Nuxt): Promise<any>;
24
24
  * Create a subprocess that handled by the DevTools.
25
25
  */
26
26
  declare function startSubprocess(execaOptions: SubprocessOptions, tabOptions: TerminalState, nuxt?: _nuxt_schema.Nuxt): {
27
- getProcess(): ReturnType<typeof execa>;
27
+ getProcess: () => ExecaChildProcess<string>;
28
28
  terminate: () => void;
29
29
  restart: () => void;
30
30
  clear: () => void;
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
2
  import { BirpcGroup } from 'birpc';
3
+ import { ExecaChildProcess } from 'execa';
3
4
  import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.BMivX6Xf.mjs';
4
- import { execa } from 'execa';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'unimport';
@@ -24,7 +24,7 @@ declare function refreshCustomTabs(nuxt?: _nuxt_schema.Nuxt): Promise<any>;
24
24
  * Create a subprocess that handled by the DevTools.
25
25
  */
26
26
  declare function startSubprocess(execaOptions: SubprocessOptions, tabOptions: TerminalState, nuxt?: _nuxt_schema.Nuxt): {
27
- getProcess(): ReturnType<typeof execa>;
27
+ getProcess: () => ExecaChildProcess<string>;
28
28
  terminate: () => void;
29
29
  restart: () => void;
30
30
  clear: () => void;
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
2
  import { BirpcGroup } from 'birpc';
3
+ import { ExecaChildProcess } from 'execa';
3
4
  import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.BMivX6Xf.js';
4
- import { execa } from 'execa';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'unimport';
@@ -24,7 +24,7 @@ declare function refreshCustomTabs(nuxt?: _nuxt_schema.Nuxt): Promise<any>;
24
24
  * Create a subprocess that handled by the DevTools.
25
25
  */
26
26
  declare function startSubprocess(execaOptions: SubprocessOptions, tabOptions: TerminalState, nuxt?: _nuxt_schema.Nuxt): {
27
- getProcess(): ReturnType<typeof execa>;
27
+ getProcess: () => ExecaChildProcess<string>;
28
28
  terminate: () => void;
29
29
  restart: () => void;
30
30
  clear: () => void;
package/dist/index.mjs CHANGED
@@ -82,9 +82,7 @@ function startSubprocess(execaOptions, tabOptions, nuxt = useNuxt()) {
82
82
  });
83
83
  }
84
84
  return {
85
- getProcess() {
86
- return process;
87
- },
85
+ getProcess: () => process,
88
86
  terminate,
89
87
  restart,
90
88
  clear
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxt/devtools-kit-nightly",
3
3
  "type": "module",
4
- "version": "2.3.0-29030700.4e9da7f",
4
+ "version": "2.3.1-29049449.84e96a6",
5
5
  "license": "MIT",
6
6
  "homepage": "https://devtools.nuxt.com/module/utils-kit",
7
7
  "repository": {
@@ -41,12 +41,12 @@
41
41
  "vite": ">=6.0"
42
42
  },
43
43
  "dependencies": {
44
- "@nuxt/kit": "^3.16.0",
45
- "@nuxt/schema": "^3.16.0",
46
- "execa": "^9.5.2"
44
+ "@nuxt/kit": "^3.16.1",
45
+ "@nuxt/schema": "^3.16.1",
46
+ "execa": "^8.0.1"
47
47
  },
48
48
  "devDependencies": {
49
- "birpc": "^2.2.0",
49
+ "birpc": "^2.3.0",
50
50
  "error-stack-parser-es": "^1.0.5",
51
51
  "hookable": "^5.5.3",
52
52
  "unbuild": "^3.5.0",