@nuxt/devtools-kit 1.4.0 → 1.4.2
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 +4 -4
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/runtime/host-client.d.ts +2 -2
- package/dist/runtime/iframe-client.d.ts +2 -2
- package/dist/shared/{devtools-kit.7150e50a.d.cts → devtools-kit.c8a8b7e8.d.cts} +21 -21
- package/dist/shared/{devtools-kit.7150e50a.d.mts → devtools-kit.c8a8b7e8.d.mts} +21 -21
- package/dist/shared/{devtools-kit.7150e50a.d.ts → devtools-kit.c8a8b7e8.d.ts} +21 -21
- package/dist/types.d.cts +11 -11
- package/dist/types.d.mts +11 -11
- package/dist/types.d.ts +11 -11
- package/host-client.mjs +1 -1
- package/iframe-client.mjs +1 -1
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as execa from 'execa';
|
|
2
2
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
3
3
|
import { BirpcGroup } from 'birpc';
|
|
4
|
-
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.
|
|
4
|
+
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.c8a8b7e8.cjs';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
|
-
import 'nitropack';
|
|
8
|
-
import 'unstorage';
|
|
9
|
-
import 'vite-plugin-vue-inspector';
|
|
10
7
|
import 'unimport';
|
|
8
|
+
import 'vite-plugin-vue-inspector';
|
|
11
9
|
import 'vue-router';
|
|
10
|
+
import 'nitropack';
|
|
11
|
+
import 'unstorage';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Hooks to extend a custom tab in devtools.
|
package/dist/index.d.mts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as execa from 'execa';
|
|
2
2
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
3
3
|
import { BirpcGroup } from 'birpc';
|
|
4
|
-
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.
|
|
4
|
+
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.c8a8b7e8.mjs';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
|
-
import 'nitropack';
|
|
8
|
-
import 'unstorage';
|
|
9
|
-
import 'vite-plugin-vue-inspector';
|
|
10
7
|
import 'unimport';
|
|
8
|
+
import 'vite-plugin-vue-inspector';
|
|
11
9
|
import 'vue-router';
|
|
10
|
+
import 'nitropack';
|
|
11
|
+
import 'unstorage';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Hooks to extend a custom tab in devtools.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as execa from 'execa';
|
|
2
2
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
3
3
|
import { BirpcGroup } from 'birpc';
|
|
4
|
-
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.
|
|
4
|
+
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.c8a8b7e8.js';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
|
-
import 'nitropack';
|
|
8
|
-
import 'unstorage';
|
|
9
|
-
import 'vite-plugin-vue-inspector';
|
|
10
7
|
import 'unimport';
|
|
8
|
+
import 'vite-plugin-vue-inspector';
|
|
11
9
|
import 'vue-router';
|
|
10
|
+
import 'nitropack';
|
|
11
|
+
import 'unstorage';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Hooks to extend a custom tab in devtools.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
+
import type { NuxtDevtoolsHostClient } from '@nuxt/devtools-kit/types';
|
|
1
2
|
import type { Ref } from 'vue';
|
|
2
|
-
import type { NuxtDevtoolsHostClient } from '../types';
|
|
3
3
|
export declare function onDevtoolsHostClientConnected(fn: (client: NuxtDevtoolsHostClient) => void): (() => void) | undefined;
|
|
4
|
-
export declare function useDevtoolsHostClient(): Ref<
|
|
4
|
+
export declare function useDevtoolsHostClient(): Ref<any, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
+
import type { NuxtDevtoolsIframeClient } from '@nuxt/devtools-kit/types';
|
|
1
2
|
import type { Ref } from 'vue';
|
|
2
|
-
import type { NuxtDevtoolsIframeClient } from '../types';
|
|
3
3
|
export declare function onDevtoolsClientConnected(fn: (client: NuxtDevtoolsIframeClient) => void): (() => void) | undefined;
|
|
4
|
-
export declare function useDevtoolsClient(): Ref<
|
|
4
|
+
export declare function useDevtoolsClient(): Ref<any, any>;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { VNode, MaybeRefOrGetter } from 'vue';
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
3
|
import { Component, NuxtOptions, NuxtPage, NuxtLayout, NuxtApp, Nuxt } from 'nuxt/schema';
|
|
4
|
-
import { StorageMounts } from 'nitropack';
|
|
5
|
-
import { StorageValue } from 'unstorage';
|
|
6
|
-
import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
|
|
7
4
|
import { Import, UnimportMeta } from 'unimport';
|
|
5
|
+
import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
|
|
8
6
|
import { RouteRecordNormalized } from 'vue-router';
|
|
9
|
-
import {
|
|
7
|
+
import { StorageMounts } from 'nitropack';
|
|
8
|
+
import { StorageValue } from 'unstorage';
|
|
10
9
|
import { NuxtAnalyzeMeta } from '@nuxt/schema';
|
|
10
|
+
import { Options } from 'execa';
|
|
11
11
|
|
|
12
12
|
type TabCategory = 'pinned' | 'app' | 'analyze' | 'server' | 'modules' | 'documentation' | 'advanced';
|
|
13
13
|
|
|
@@ -514,6 +514,22 @@ interface NuxtDevToolsOptions {
|
|
|
514
514
|
};
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
interface AnalyzeBuildMeta extends NuxtAnalyzeMeta {
|
|
518
|
+
features: {
|
|
519
|
+
bundleClient: boolean;
|
|
520
|
+
bundleNitro: boolean;
|
|
521
|
+
viteInspect: boolean;
|
|
522
|
+
};
|
|
523
|
+
size: {
|
|
524
|
+
clientBundle?: number;
|
|
525
|
+
nitroBundle?: number;
|
|
526
|
+
};
|
|
527
|
+
}
|
|
528
|
+
interface AnalyzeBuildsInfo {
|
|
529
|
+
isBuilding: boolean;
|
|
530
|
+
builds: AnalyzeBuildMeta[];
|
|
531
|
+
}
|
|
532
|
+
|
|
517
533
|
interface TerminalBase {
|
|
518
534
|
id: string;
|
|
519
535
|
name: string;
|
|
@@ -560,22 +576,6 @@ interface WizardFunctions {
|
|
|
560
576
|
type WizardActions = keyof WizardFunctions;
|
|
561
577
|
type GetWizardArgs<T extends WizardActions> = WizardFunctions[T] extends (nuxt: any, ...args: infer A) => any ? A : never;
|
|
562
578
|
|
|
563
|
-
interface AnalyzeBuildMeta extends NuxtAnalyzeMeta {
|
|
564
|
-
features: {
|
|
565
|
-
bundleClient: boolean;
|
|
566
|
-
bundleNitro: boolean;
|
|
567
|
-
viteInspect: boolean;
|
|
568
|
-
};
|
|
569
|
-
size: {
|
|
570
|
-
clientBundle?: number;
|
|
571
|
-
nitroBundle?: number;
|
|
572
|
-
};
|
|
573
|
-
}
|
|
574
|
-
interface AnalyzeBuildsInfo {
|
|
575
|
-
isBuilding: boolean;
|
|
576
|
-
builds: AnalyzeBuildMeta[];
|
|
577
|
-
}
|
|
578
|
-
|
|
579
579
|
interface ServerFunctions {
|
|
580
580
|
getServerConfig: () => NuxtOptions;
|
|
581
581
|
getServerRuntimeConfig: () => Record<string, any>;
|
|
@@ -738,4 +738,4 @@ declare module '@nuxt/schema' {
|
|
|
738
738
|
}
|
|
739
739
|
}
|
|
740
740
|
|
|
741
|
-
export type {
|
|
741
|
+
export type { ModuleGlobalOptions as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, ModuleOptions as _, VueInspectorClient as a, VSCodeIntegrationOptions as a0, VSCodeTunnelOptions as a1, NuxtDevToolsOptions as a2, ClientUpdateEvent as a3, NuxtDevtoolsServerContext as a4, InstallModuleReturn as a5, TerminalBase as a6, TerminalAction as a7, TerminalInfo as a8, WizardFunctions as a9, WizardActions as aa, GetWizardArgs as ab, ServerFunctions as b, AnalyzeBuildsInfo as c, TabCategory as d, ModuleLaunchView as e, ModuleIframeView as f, ModuleVNodeView as g, ModuleLaunchAction as h, ModuleView as i, ModuleIframeTabLazyOptions as j, ModuleBuiltinTab as k, ModuleTabInfo as l, CategorizedTabs as m, PackageUpdateInfo as n, PackageManagerName as o, NpmCommandType as p, NpmCommandOptions as q, AutoImportsWithMetadata as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { VNode, MaybeRefOrGetter } from 'vue';
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
3
|
import { Component, NuxtOptions, NuxtPage, NuxtLayout, NuxtApp, Nuxt } from 'nuxt/schema';
|
|
4
|
-
import { StorageMounts } from 'nitropack';
|
|
5
|
-
import { StorageValue } from 'unstorage';
|
|
6
|
-
import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
|
|
7
4
|
import { Import, UnimportMeta } from 'unimport';
|
|
5
|
+
import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
|
|
8
6
|
import { RouteRecordNormalized } from 'vue-router';
|
|
9
|
-
import {
|
|
7
|
+
import { StorageMounts } from 'nitropack';
|
|
8
|
+
import { StorageValue } from 'unstorage';
|
|
10
9
|
import { NuxtAnalyzeMeta } from '@nuxt/schema';
|
|
10
|
+
import { Options } from 'execa';
|
|
11
11
|
|
|
12
12
|
type TabCategory = 'pinned' | 'app' | 'analyze' | 'server' | 'modules' | 'documentation' | 'advanced';
|
|
13
13
|
|
|
@@ -514,6 +514,22 @@ interface NuxtDevToolsOptions {
|
|
|
514
514
|
};
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
interface AnalyzeBuildMeta extends NuxtAnalyzeMeta {
|
|
518
|
+
features: {
|
|
519
|
+
bundleClient: boolean;
|
|
520
|
+
bundleNitro: boolean;
|
|
521
|
+
viteInspect: boolean;
|
|
522
|
+
};
|
|
523
|
+
size: {
|
|
524
|
+
clientBundle?: number;
|
|
525
|
+
nitroBundle?: number;
|
|
526
|
+
};
|
|
527
|
+
}
|
|
528
|
+
interface AnalyzeBuildsInfo {
|
|
529
|
+
isBuilding: boolean;
|
|
530
|
+
builds: AnalyzeBuildMeta[];
|
|
531
|
+
}
|
|
532
|
+
|
|
517
533
|
interface TerminalBase {
|
|
518
534
|
id: string;
|
|
519
535
|
name: string;
|
|
@@ -560,22 +576,6 @@ interface WizardFunctions {
|
|
|
560
576
|
type WizardActions = keyof WizardFunctions;
|
|
561
577
|
type GetWizardArgs<T extends WizardActions> = WizardFunctions[T] extends (nuxt: any, ...args: infer A) => any ? A : never;
|
|
562
578
|
|
|
563
|
-
interface AnalyzeBuildMeta extends NuxtAnalyzeMeta {
|
|
564
|
-
features: {
|
|
565
|
-
bundleClient: boolean;
|
|
566
|
-
bundleNitro: boolean;
|
|
567
|
-
viteInspect: boolean;
|
|
568
|
-
};
|
|
569
|
-
size: {
|
|
570
|
-
clientBundle?: number;
|
|
571
|
-
nitroBundle?: number;
|
|
572
|
-
};
|
|
573
|
-
}
|
|
574
|
-
interface AnalyzeBuildsInfo {
|
|
575
|
-
isBuilding: boolean;
|
|
576
|
-
builds: AnalyzeBuildMeta[];
|
|
577
|
-
}
|
|
578
|
-
|
|
579
579
|
interface ServerFunctions {
|
|
580
580
|
getServerConfig: () => NuxtOptions;
|
|
581
581
|
getServerRuntimeConfig: () => Record<string, any>;
|
|
@@ -738,4 +738,4 @@ declare module '@nuxt/schema' {
|
|
|
738
738
|
}
|
|
739
739
|
}
|
|
740
740
|
|
|
741
|
-
export type {
|
|
741
|
+
export type { ModuleGlobalOptions as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, ModuleOptions as _, VueInspectorClient as a, VSCodeIntegrationOptions as a0, VSCodeTunnelOptions as a1, NuxtDevToolsOptions as a2, ClientUpdateEvent as a3, NuxtDevtoolsServerContext as a4, InstallModuleReturn as a5, TerminalBase as a6, TerminalAction as a7, TerminalInfo as a8, WizardFunctions as a9, WizardActions as aa, GetWizardArgs as ab, ServerFunctions as b, AnalyzeBuildsInfo as c, TabCategory as d, ModuleLaunchView as e, ModuleIframeView as f, ModuleVNodeView as g, ModuleLaunchAction as h, ModuleView as i, ModuleIframeTabLazyOptions as j, ModuleBuiltinTab as k, ModuleTabInfo as l, CategorizedTabs as m, PackageUpdateInfo as n, PackageManagerName as o, NpmCommandType as p, NpmCommandOptions as q, AutoImportsWithMetadata as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { VNode, MaybeRefOrGetter } from 'vue';
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
3
|
import { Component, NuxtOptions, NuxtPage, NuxtLayout, NuxtApp, Nuxt } from 'nuxt/schema';
|
|
4
|
-
import { StorageMounts } from 'nitropack';
|
|
5
|
-
import { StorageValue } from 'unstorage';
|
|
6
|
-
import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
|
|
7
4
|
import { Import, UnimportMeta } from 'unimport';
|
|
5
|
+
import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
|
|
8
6
|
import { RouteRecordNormalized } from 'vue-router';
|
|
9
|
-
import {
|
|
7
|
+
import { StorageMounts } from 'nitropack';
|
|
8
|
+
import { StorageValue } from 'unstorage';
|
|
10
9
|
import { NuxtAnalyzeMeta } from '@nuxt/schema';
|
|
10
|
+
import { Options } from 'execa';
|
|
11
11
|
|
|
12
12
|
type TabCategory = 'pinned' | 'app' | 'analyze' | 'server' | 'modules' | 'documentation' | 'advanced';
|
|
13
13
|
|
|
@@ -514,6 +514,22 @@ interface NuxtDevToolsOptions {
|
|
|
514
514
|
};
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
interface AnalyzeBuildMeta extends NuxtAnalyzeMeta {
|
|
518
|
+
features: {
|
|
519
|
+
bundleClient: boolean;
|
|
520
|
+
bundleNitro: boolean;
|
|
521
|
+
viteInspect: boolean;
|
|
522
|
+
};
|
|
523
|
+
size: {
|
|
524
|
+
clientBundle?: number;
|
|
525
|
+
nitroBundle?: number;
|
|
526
|
+
};
|
|
527
|
+
}
|
|
528
|
+
interface AnalyzeBuildsInfo {
|
|
529
|
+
isBuilding: boolean;
|
|
530
|
+
builds: AnalyzeBuildMeta[];
|
|
531
|
+
}
|
|
532
|
+
|
|
517
533
|
interface TerminalBase {
|
|
518
534
|
id: string;
|
|
519
535
|
name: string;
|
|
@@ -560,22 +576,6 @@ interface WizardFunctions {
|
|
|
560
576
|
type WizardActions = keyof WizardFunctions;
|
|
561
577
|
type GetWizardArgs<T extends WizardActions> = WizardFunctions[T] extends (nuxt: any, ...args: infer A) => any ? A : never;
|
|
562
578
|
|
|
563
|
-
interface AnalyzeBuildMeta extends NuxtAnalyzeMeta {
|
|
564
|
-
features: {
|
|
565
|
-
bundleClient: boolean;
|
|
566
|
-
bundleNitro: boolean;
|
|
567
|
-
viteInspect: boolean;
|
|
568
|
-
};
|
|
569
|
-
size: {
|
|
570
|
-
clientBundle?: number;
|
|
571
|
-
nitroBundle?: number;
|
|
572
|
-
};
|
|
573
|
-
}
|
|
574
|
-
interface AnalyzeBuildsInfo {
|
|
575
|
-
isBuilding: boolean;
|
|
576
|
-
builds: AnalyzeBuildMeta[];
|
|
577
|
-
}
|
|
578
|
-
|
|
579
579
|
interface ServerFunctions {
|
|
580
580
|
getServerConfig: () => NuxtOptions;
|
|
581
581
|
getServerRuntimeConfig: () => Record<string, any>;
|
|
@@ -738,4 +738,4 @@ declare module '@nuxt/schema' {
|
|
|
738
738
|
}
|
|
739
739
|
}
|
|
740
740
|
|
|
741
|
-
export type {
|
|
741
|
+
export type { ModuleGlobalOptions as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, ModuleOptions as _, VueInspectorClient as a, VSCodeIntegrationOptions as a0, VSCodeTunnelOptions as a1, NuxtDevToolsOptions as a2, ClientUpdateEvent as a3, NuxtDevtoolsServerContext as a4, InstallModuleReturn as a5, TerminalBase as a6, TerminalAction as a7, TerminalInfo as a8, WizardFunctions as a9, WizardActions as aa, GetWizardArgs as ab, ServerFunctions as b, AnalyzeBuildsInfo as c, TabCategory as d, ModuleLaunchView as e, ModuleIframeView as f, ModuleVNodeView as g, ModuleLaunchAction as h, ModuleView as i, ModuleIframeTabLazyOptions as j, ModuleBuiltinTab as k, ModuleTabInfo as l, CategorizedTabs as m, PackageUpdateInfo as n, PackageManagerName as o, NpmCommandType as p, NpmCommandOptions as q, AutoImportsWithMetadata as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
|
package/dist/types.d.cts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.
|
|
2
|
-
export {
|
|
3
|
-
import { Ref } from 'vue';
|
|
4
|
-
import { AppConfig } from 'nuxt/schema';
|
|
5
|
-
import { NuxtApp } from 'nuxt/app';
|
|
6
|
-
import { Hookable } from 'hookable';
|
|
1
|
+
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.c8a8b7e8.cjs';
|
|
2
|
+
export { A as AnalyzeBuildMeta, c as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, r as AutoImportsWithMetadata, B as BasicModuleInfo, m as CategorizedTabs, a3 as ClientUpdateEvent, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ab as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a5 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, k as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, $ as ModuleGlobalOptions, j as ModuleIframeTabLazyOptions, f as ModuleIframeView, h as ModuleLaunchAction, e as ModuleLaunchView, _ as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, l as ModuleTabInfo, J as ModuleType, g as ModuleVNodeView, i as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a2 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a4 as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, d as TabCategory, a7 as TerminalAction, a6 as TerminalBase, a8 as TerminalInfo, T as TerminalState, a0 as VSCodeIntegrationOptions, a1 as VSCodeTunnelOptions, aa as WizardActions, a9 as WizardFunctions } from './shared/devtools-kit.c8a8b7e8.cjs';
|
|
7
3
|
import { BirpcReturn } from 'birpc';
|
|
8
|
-
import {
|
|
4
|
+
import { Hookable } from 'hookable';
|
|
5
|
+
import { NuxtApp } from 'nuxt/app';
|
|
6
|
+
import { AppConfig } from 'nuxt/schema';
|
|
9
7
|
import { $Fetch } from 'ofetch';
|
|
8
|
+
import { BuiltinLanguage } from 'shiki';
|
|
9
|
+
import { Ref } from 'vue';
|
|
10
10
|
import { StackFrame } from 'error-stack-parser-es';
|
|
11
|
-
import 'nitropack';
|
|
12
|
-
import 'unstorage';
|
|
13
|
-
import 'vite-plugin-vue-inspector';
|
|
14
11
|
import 'unimport';
|
|
12
|
+
import 'vite-plugin-vue-inspector';
|
|
15
13
|
import 'vue-router';
|
|
16
|
-
import '
|
|
14
|
+
import 'nitropack';
|
|
15
|
+
import 'unstorage';
|
|
17
16
|
import '@nuxt/schema';
|
|
17
|
+
import 'execa';
|
|
18
18
|
|
|
19
19
|
interface TimelineEventFunction {
|
|
20
20
|
type: 'function';
|
package/dist/types.d.mts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.
|
|
2
|
-
export {
|
|
3
|
-
import { Ref } from 'vue';
|
|
4
|
-
import { AppConfig } from 'nuxt/schema';
|
|
5
|
-
import { NuxtApp } from 'nuxt/app';
|
|
6
|
-
import { Hookable } from 'hookable';
|
|
1
|
+
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.c8a8b7e8.mjs';
|
|
2
|
+
export { A as AnalyzeBuildMeta, c as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, r as AutoImportsWithMetadata, B as BasicModuleInfo, m as CategorizedTabs, a3 as ClientUpdateEvent, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ab as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a5 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, k as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, $ as ModuleGlobalOptions, j as ModuleIframeTabLazyOptions, f as ModuleIframeView, h as ModuleLaunchAction, e as ModuleLaunchView, _ as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, l as ModuleTabInfo, J as ModuleType, g as ModuleVNodeView, i as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a2 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a4 as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, d as TabCategory, a7 as TerminalAction, a6 as TerminalBase, a8 as TerminalInfo, T as TerminalState, a0 as VSCodeIntegrationOptions, a1 as VSCodeTunnelOptions, aa as WizardActions, a9 as WizardFunctions } from './shared/devtools-kit.c8a8b7e8.mjs';
|
|
7
3
|
import { BirpcReturn } from 'birpc';
|
|
8
|
-
import {
|
|
4
|
+
import { Hookable } from 'hookable';
|
|
5
|
+
import { NuxtApp } from 'nuxt/app';
|
|
6
|
+
import { AppConfig } from 'nuxt/schema';
|
|
9
7
|
import { $Fetch } from 'ofetch';
|
|
8
|
+
import { BuiltinLanguage } from 'shiki';
|
|
9
|
+
import { Ref } from 'vue';
|
|
10
10
|
import { StackFrame } from 'error-stack-parser-es';
|
|
11
|
-
import 'nitropack';
|
|
12
|
-
import 'unstorage';
|
|
13
|
-
import 'vite-plugin-vue-inspector';
|
|
14
11
|
import 'unimport';
|
|
12
|
+
import 'vite-plugin-vue-inspector';
|
|
15
13
|
import 'vue-router';
|
|
16
|
-
import '
|
|
14
|
+
import 'nitropack';
|
|
15
|
+
import 'unstorage';
|
|
17
16
|
import '@nuxt/schema';
|
|
17
|
+
import 'execa';
|
|
18
18
|
|
|
19
19
|
interface TimelineEventFunction {
|
|
20
20
|
type: 'function';
|
package/dist/types.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.
|
|
2
|
-
export {
|
|
3
|
-
import { Ref } from 'vue';
|
|
4
|
-
import { AppConfig } from 'nuxt/schema';
|
|
5
|
-
import { NuxtApp } from 'nuxt/app';
|
|
6
|
-
import { Hookable } from 'hookable';
|
|
1
|
+
import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.c8a8b7e8.js';
|
|
2
|
+
export { A as AnalyzeBuildMeta, c as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, r as AutoImportsWithMetadata, B as BasicModuleInfo, m as CategorizedTabs, a3 as ClientUpdateEvent, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ab as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a5 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, k as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, $ as ModuleGlobalOptions, j as ModuleIframeTabLazyOptions, f as ModuleIframeView, h as ModuleLaunchAction, e as ModuleLaunchView, _ as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, l as ModuleTabInfo, J as ModuleType, g as ModuleVNodeView, i as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a2 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a4 as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, d as TabCategory, a7 as TerminalAction, a6 as TerminalBase, a8 as TerminalInfo, T as TerminalState, a0 as VSCodeIntegrationOptions, a1 as VSCodeTunnelOptions, aa as WizardActions, a9 as WizardFunctions } from './shared/devtools-kit.c8a8b7e8.js';
|
|
7
3
|
import { BirpcReturn } from 'birpc';
|
|
8
|
-
import {
|
|
4
|
+
import { Hookable } from 'hookable';
|
|
5
|
+
import { NuxtApp } from 'nuxt/app';
|
|
6
|
+
import { AppConfig } from 'nuxt/schema';
|
|
9
7
|
import { $Fetch } from 'ofetch';
|
|
8
|
+
import { BuiltinLanguage } from 'shiki';
|
|
9
|
+
import { Ref } from 'vue';
|
|
10
10
|
import { StackFrame } from 'error-stack-parser-es';
|
|
11
|
-
import 'nitropack';
|
|
12
|
-
import 'unstorage';
|
|
13
|
-
import 'vite-plugin-vue-inspector';
|
|
14
11
|
import 'unimport';
|
|
12
|
+
import 'vite-plugin-vue-inspector';
|
|
15
13
|
import 'vue-router';
|
|
16
|
-
import '
|
|
14
|
+
import 'nitropack';
|
|
15
|
+
import 'unstorage';
|
|
17
16
|
import '@nuxt/schema';
|
|
17
|
+
import 'execa';
|
|
18
18
|
|
|
19
19
|
interface TimelineEventFunction {
|
|
20
20
|
type: 'function';
|
package/host-client.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './dist/runtime/host-client.
|
|
1
|
+
export * from './dist/runtime/host-client.mjs'
|
package/iframe-client.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './dist/runtime/iframe-client.
|
|
1
|
+
export * from './dist/runtime/iframe-client.mjs'
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/devtools-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://devtools.nuxt.com/module/utils-kit",
|
|
7
7
|
"repository": {
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"vite": "*"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@nuxt/kit": "^3.13.
|
|
45
|
-
"@nuxt/schema": "^3.13.
|
|
44
|
+
"@nuxt/kit": "^3.13.1",
|
|
45
|
+
"@nuxt/schema": "^3.13.1",
|
|
46
46
|
"execa": "^7.2.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"error-stack-parser-es": "^0.1.5",
|
|
51
51
|
"hookable": "^5.5.3",
|
|
52
52
|
"unbuild": "^2.0.0",
|
|
53
|
-
"unimport": "^3.11.
|
|
54
|
-
"vite-plugin-vue-inspector": "^5.
|
|
53
|
+
"unimport": "^3.11.1",
|
|
54
|
+
"vite-plugin-vue-inspector": "^5.2.0",
|
|
55
55
|
"vue-router": "^4.4.3"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|