@nuxt/devtools-kit-nightly 2.0.0-beta.3-28953211.7c51e75 → 2.0.0-beta.3-28970839.e68b27c
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.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as execa from 'execa';
|
|
2
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
3
2
|
import { BirpcGroup } from 'birpc';
|
|
4
3
|
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.ozceKZpq.cjs';
|
|
4
|
+
import { execa } from 'execa';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'unimport';
|
|
@@ -25,7 +25,7 @@ declare function refreshCustomTabs(nuxt?: _nuxt_schema.Nuxt): Promise<any>;
|
|
|
25
25
|
* Create a subprocess that handled by the DevTools.
|
|
26
26
|
*/
|
|
27
27
|
declare function startSubprocess(execaOptions: SubprocessOptions, tabOptions: TerminalState, nuxt?: _nuxt_schema.Nuxt): {
|
|
28
|
-
getProcess(): execa
|
|
28
|
+
getProcess(): ReturnType<typeof execa>;
|
|
29
29
|
terminate: () => void;
|
|
30
30
|
restart: () => void;
|
|
31
31
|
clear: () => void;
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as execa from 'execa';
|
|
2
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
3
2
|
import { BirpcGroup } from 'birpc';
|
|
4
3
|
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.ozceKZpq.mjs';
|
|
4
|
+
import { execa } from 'execa';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'unimport';
|
|
@@ -25,7 +25,7 @@ declare function refreshCustomTabs(nuxt?: _nuxt_schema.Nuxt): Promise<any>;
|
|
|
25
25
|
* Create a subprocess that handled by the DevTools.
|
|
26
26
|
*/
|
|
27
27
|
declare function startSubprocess(execaOptions: SubprocessOptions, tabOptions: TerminalState, nuxt?: _nuxt_schema.Nuxt): {
|
|
28
|
-
getProcess(): execa
|
|
28
|
+
getProcess(): ReturnType<typeof execa>;
|
|
29
29
|
terminate: () => void;
|
|
30
30
|
restart: () => void;
|
|
31
31
|
clear: () => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as execa from 'execa';
|
|
2
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
3
2
|
import { BirpcGroup } from 'birpc';
|
|
4
3
|
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.ozceKZpq.js';
|
|
4
|
+
import { execa } from 'execa';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'unimport';
|
|
@@ -25,7 +25,7 @@ declare function refreshCustomTabs(nuxt?: _nuxt_schema.Nuxt): Promise<any>;
|
|
|
25
25
|
* Create a subprocess that handled by the DevTools.
|
|
26
26
|
*/
|
|
27
27
|
declare function startSubprocess(execaOptions: SubprocessOptions, tabOptions: TerminalState, nuxt?: _nuxt_schema.Nuxt): {
|
|
28
|
-
getProcess(): execa
|
|
28
|
+
getProcess(): ReturnType<typeof execa>;
|
|
29
29
|
terminate: () => void;
|
|
30
30
|
restart: () => void;
|
|
31
31
|
clear: () => void;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/devtools-kit-nightly",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.0-beta.3-
|
|
4
|
+
"version": "2.0.0-beta.3-28970839.e68b27c",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://devtools.nuxt.com/module/utils-kit",
|
|
7
7
|
"repository": {
|
|
@@ -41,16 +41,16 @@
|
|
|
41
41
|
"vite": ">=6.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@nuxt/kit": "^3.15.
|
|
45
|
-
"@nuxt/schema": "^3.15.
|
|
46
|
-
"execa": "^
|
|
44
|
+
"@nuxt/kit": "^3.15.4",
|
|
45
|
+
"@nuxt/schema": "^3.15.4",
|
|
46
|
+
"execa": "^9.5.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"birpc": "^2.0.19",
|
|
50
50
|
"error-stack-parser-es": "^1.0.5",
|
|
51
51
|
"hookable": "^5.5.3",
|
|
52
52
|
"unbuild": "^3.3.1",
|
|
53
|
-
"unimport": "^
|
|
53
|
+
"unimport": "^4.0.0",
|
|
54
54
|
"vite-plugin-vue-inspector": "^5.3.1",
|
|
55
55
|
"vue-router": "^4.5.0"
|
|
56
56
|
},
|