Skip to content

Commit a35de49

Browse files
committed
chore: update
1 parent 00ebed3 commit a35de49

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

packages/devtools-kit/src/_types/hooks.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type { ModuleCustomTab } from './custom-tabs'
2-
import type { NuxtDevtoolsServerContext } from './server-ctx'
32
import type { TerminalState } from './terminals'
43

54
declare module '@nuxt/schema' {
@@ -42,13 +41,6 @@ declare module '@nuxt/schema' {
4241
* Returns true if terminal is found and deleted.
4342
*/
4443
'devtools:terminal:remove': (id: string) => void
45-
46-
/**
47-
* DevTools context on the server side.
48-
*
49-
* @internal Internal and should not be used directly.
50-
*/
51-
'devtools:internal:ctx': (ctx: NuxtDevtoolsServerContext) => void
5244
}
5345
}
5446

packages/devtools/src/server-rpc/wizard.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import c from 'picocolors'
22
import { logger } from '@nuxt/kit'
3-
import type { WizardActions } from '@nuxt/devtools-kit/types'
4-
import type { ServerFunctions } from '../types'
3+
import type { NuxtDevtoolsServerContext, ServerFunctions, WizardActions } from '@nuxt/devtools-kit/types'
54
import { wizard } from '../wizard'
65
import { LOG_PREFIX } from '../logger'
7-
import type { NuxtDevtoolsServerContext } from './types'
86

97
export function setupWizardRPC({ nuxt }: NuxtDevtoolsServerContext) {
108
return {

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"exclude": [
2222
"**/node_modules",
2323
"**/dist",
24-
"./packages/devtools/client",
2524
"**/playground",
26-
"**/docs"
25+
"**/docs",
26+
"./packages/devtools/client"
2727
]
2828
}

0 commit comments

Comments
 (0)