@nuxt/devtools-kit 0.3.1 → 0.4.0
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/{client-api-34a84dad.d.ts → client-api-a2b0aa8f.d.ts} +1 -1
- package/dist/{hooks-db1f6518.d.ts → hooks-bf2fa0f7.d.ts} +1 -1
- package/dist/iframe-client.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/{rpc-5ab26945.d.ts → rpc-7b22fbcc.d.ts} +13 -1
- package/dist/types.d.ts +3 -3
- package/package.json +7 -7
|
@@ -2,7 +2,7 @@ import { AppConfig } from 'nuxt/schema';
|
|
|
2
2
|
import { NuxtApp } from 'nuxt/dist/app/nuxt';
|
|
3
3
|
import { Hookable } from 'hookable';
|
|
4
4
|
import { BirpcReturn } from 'birpc';
|
|
5
|
-
import {
|
|
5
|
+
import { v as VueInspectorData, V as VueInspectorClient, H as HookInfo, q as PluginMetric, F as ServerFunctions } from './rpc-7b22fbcc.js';
|
|
6
6
|
|
|
7
7
|
interface NuxtDevtoolsClientHooks {
|
|
8
8
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { M as ModuleCustomTab,
|
|
1
|
+
import { M as ModuleCustomTab, J as ClientFunctions, F as ServerFunctions, T as TerminalState } from './rpc-7b22fbcc.js';
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
3
|
import { Nuxt } from 'nuxt/schema';
|
|
4
4
|
|
package/dist/iframe-client.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
|
-
import { c as NuxtDevtoolsIframeClient } from './client-api-
|
|
2
|
+
import { c as NuxtDevtoolsIframeClient } from './client-api-a2b0aa8f.js';
|
|
3
3
|
import 'nuxt/schema';
|
|
4
4
|
import 'nuxt/dist/app/nuxt';
|
|
5
5
|
import 'hookable';
|
|
6
6
|
import 'birpc';
|
|
7
|
-
import './rpc-
|
|
7
|
+
import './rpc-7b22fbcc.js';
|
|
8
8
|
import 'nitropack';
|
|
9
9
|
import 'unstorage';
|
|
10
10
|
import 'vue-router';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as execa from 'execa';
|
|
2
2
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
3
3
|
import { BirpcGroup } from 'birpc';
|
|
4
|
-
import { N as NuxtDevtoolsInfo } from './hooks-
|
|
5
|
-
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState } from './rpc-
|
|
4
|
+
import { N as NuxtDevtoolsInfo } from './hooks-bf2fa0f7.js';
|
|
5
|
+
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState } from './rpc-7b22fbcc.js';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'nitropack';
|
|
8
8
|
import 'unstorage';
|
|
@@ -143,6 +143,13 @@ interface AutoImportsWithMetadata {
|
|
|
143
143
|
interface RouteInfo extends Pick<RouteRecordNormalized, 'name' | 'path' | 'meta' | 'props' | 'children'> {
|
|
144
144
|
file?: string;
|
|
145
145
|
}
|
|
146
|
+
interface ServerRouteInfo {
|
|
147
|
+
route: string;
|
|
148
|
+
filepath: string;
|
|
149
|
+
path: string;
|
|
150
|
+
method?: string;
|
|
151
|
+
type: 'api' | 'route';
|
|
152
|
+
}
|
|
146
153
|
interface Payload {
|
|
147
154
|
url: string;
|
|
148
155
|
time: number;
|
|
@@ -293,6 +300,7 @@ interface ServerFunctions {
|
|
|
293
300
|
getServerHooks(): HookInfo[];
|
|
294
301
|
getServerLayouts(): NuxtLayout[];
|
|
295
302
|
getStaticAssets(): Promise<AssetInfo[]>;
|
|
303
|
+
getServerRoutes(): Promise<ServerRouteInfo[]>;
|
|
296
304
|
checkForUpdateFor(name: string): Promise<PackageUpdateInfo | undefined>;
|
|
297
305
|
getPackageManager(): Promise<PackageManagerName>;
|
|
298
306
|
getNpmCommand(command: NpmCommandType, packageName: string, options?: NpmCommandOptions): Promise<string[] | undefined>;
|
|
@@ -309,6 +317,10 @@ interface ServerFunctions {
|
|
|
309
317
|
removeStorageItem(key: string): Promise<void>;
|
|
310
318
|
getImageMeta(filepath: string): Promise<ImageMeta | undefined>;
|
|
311
319
|
getTextAssetContent(filepath: string, limit?: number): Promise<string | undefined>;
|
|
320
|
+
writeStaticAssets(file: {
|
|
321
|
+
name: string;
|
|
322
|
+
data: string;
|
|
323
|
+
}[], path: string): Promise<string[]>;
|
|
312
324
|
customTabAction(name: string, action: number): Promise<boolean>;
|
|
313
325
|
runWizard<T extends WizardActions>(name: T, ...args: GetWizardArgs<T>): Promise<void>;
|
|
314
326
|
openInEditor(filepath: string): void;
|
|
@@ -329,4 +341,4 @@ interface ClientFunctions {
|
|
|
329
341
|
}
|
|
330
342
|
type ClientUpdateEvent = keyof ServerFunctions;
|
|
331
343
|
|
|
332
|
-
export { AutoImportsWithMetadata as A, BasicModuleInfo as B, CompatibilityStatus as C,
|
|
344
|
+
export { AutoImportsWithMetadata as A, BasicModuleInfo as B, CompatibilityStatus as C, WizardActions as D, GetWizardArgs as E, ServerFunctions as F, GitHubContributor as G, HookInfo as H, ImageMeta as I, ClientFunctions as J, ClientUpdateEvent as K, ModuleCustomTab as M, NpmCommandType as N, PackageUpdateInfo as P, RouteInfo as R, SubprocessOptions as S, TerminalState as T, VueInspectorClient as V, WizardFunctions as W, ModuleLaunchView as a, ModuleIframeView as b, ModuleVNodeView as c, ModuleLaunchAction as d, ModuleView as e, ModuleIframeTabLazyOptions as f, ModuleBuiltinTab as g, ModuleTabInfo as h, TerminalBase as i, TerminalAction as j, TerminalInfo as k, PackageManagerName as l, NpmCommandOptions as m, ServerRouteInfo as n, Payload as o, PluginInfoWithMetic as p, PluginMetric as q, ModuleMetric as r, ModuleCompatibility as s, ModuleType as t, MaintainerInfo as u, VueInspectorData as v, AssetType as w, AssetInfo as x, CodeSnippet as y, ComponentRelationship as z };
|
package/dist/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { b as ModuleGlobalOptions, M as ModuleOptions, N as NuxtDevtoolsInfo, a as NuxtDevtoolsServerContext, V as VSCodeIntegrationOptions, c as VSCodeTunnelOptions } from './hooks-
|
|
2
|
-
export {
|
|
3
|
-
export { b as NuxtDevtoolsClient, N as NuxtDevtoolsClientHooks, d as NuxtDevtoolsGlobal, a as NuxtDevtoolsHostClient, c as NuxtDevtoolsIframeClient } from './client-api-
|
|
1
|
+
export { b as ModuleGlobalOptions, M as ModuleOptions, N as NuxtDevtoolsInfo, a as NuxtDevtoolsServerContext, V as VSCodeIntegrationOptions, c as VSCodeTunnelOptions } from './hooks-bf2fa0f7.js';
|
|
2
|
+
export { x as AssetInfo, w as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, J as ClientFunctions, K as ClientUpdateEvent, y as CodeSnippet, C as CompatibilityStatus, z as ComponentRelationship, E as GetWizardArgs, G as GitHubContributor, H as HookInfo, I as ImageMeta, u as MaintainerInfo, g as ModuleBuiltinTab, s as ModuleCompatibility, M as ModuleCustomTab, f as ModuleIframeTabLazyOptions, b as ModuleIframeView, d as ModuleLaunchAction, a as ModuleLaunchView, r as ModuleMetric, h as ModuleTabInfo, t as ModuleType, c as ModuleVNodeView, e as ModuleView, m as NpmCommandOptions, N as NpmCommandType, l as PackageManagerName, P as PackageUpdateInfo, o as Payload, p as PluginInfoWithMetic, q as PluginMetric, R as RouteInfo, F as ServerFunctions, n as ServerRouteInfo, S as SubprocessOptions, j as TerminalAction, i as TerminalBase, k as TerminalInfo, T as TerminalState, V as VueInspectorClient, v as VueInspectorData, D as WizardActions, W as WizardFunctions } from './rpc-7b22fbcc.js';
|
|
3
|
+
export { b as NuxtDevtoolsClient, N as NuxtDevtoolsClientHooks, d as NuxtDevtoolsGlobal, a as NuxtDevtoolsHostClient, c as NuxtDevtoolsIframeClient } from './client-api-a2b0aa8f.js';
|
|
4
4
|
import 'birpc';
|
|
5
5
|
import 'nuxt/schema';
|
|
6
6
|
import 'nitropack';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/devtools-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.4.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "nuxt/devtools",
|
|
7
7
|
"exports": {
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"vite": "*"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@nuxt/kit": "^3.3.
|
|
38
|
-
"@nuxt/schema": "^3.3.
|
|
37
|
+
"@nuxt/kit": "^3.3.3",
|
|
38
|
+
"@nuxt/schema": "^3.3.3",
|
|
39
39
|
"execa": "^7.1.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"birpc": "^0.2.
|
|
43
|
-
"hookable": "^5.5.
|
|
44
|
-
"unbuild": "^1.
|
|
45
|
-
"unimport": "^3.0.
|
|
42
|
+
"birpc": "^0.2.11",
|
|
43
|
+
"hookable": "^5.5.3",
|
|
44
|
+
"unbuild": "^1.2.0",
|
|
45
|
+
"unimport": "^3.0.6",
|
|
46
46
|
"vue-router": "^4.1.6"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|