File tree Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Original file line number Diff line number Diff line change 11import type { ModuleCustomTab } from './custom-tabs'
2- import type { NuxtDevtoolsServerContext } from './server-ctx'
32import type { TerminalState } from './terminals'
43
54declare 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
Original file line number Diff line number Diff line change 11import c from 'picocolors'
22import { 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'
54import { wizard } from '../wizard'
65import { LOG_PREFIX } from '../logger'
7- import type { NuxtDevtoolsServerContext } from './types'
86
97export function setupWizardRPC ( { nuxt } : NuxtDevtoolsServerContext ) {
108 return {
Original file line number Diff line number Diff line change 2121 "exclude" : [
2222 " **/node_modules" ,
2323 " **/dist" ,
24- " ./packages/devtools/client" ,
2524 " **/playground" ,
26- " **/docs"
25+ " **/docs" ,
26+ " ./packages/devtools/client"
2727 ]
2828}
You can’t perform that action at this time.
0 commit comments