File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed
Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ function createDebugger<TEl extends object>(
2828 assert ( globalThis . SolidDevtools$$ , 'solid-devtools is not setup' )
2929
3030 if ( options != null ) {
31- globalThis . SolidDevtools$$ . options = options
31+ globalThis . SolidDevtools$$ . debugger_options = options
3232 }
3333
3434 initRoots ( )
@@ -147,7 +147,7 @@ function createDebugger<TEl extends object>(
147147 }
148148 }
149149
150- let component_registry = walker . makeComponentRegistry ( setup . options . eli )
150+ let component_registry = walker . makeComponentRegistry ( setup . debugger_options . eli )
151151
152152 //
153153 // Structure:
Original file line number Diff line number Diff line change @@ -3,10 +3,12 @@ import '@solid-devtools/debugger/setup'
33import {
44 setClientVersion ,
55 setSolidVersion ,
6- setLocatorOptions ,
76} from '@solid-devtools/debugger/setup'
87
98setClientVersion ( process . env . CLIENT_VERSION )
109setSolidVersion ( process . env . SOLID_VERSION , process . env . EXPECTED_SOLID_VERSION )
1110
12- export { setLocatorOptions }
11+ export {
12+ setLocatorOptions ,
13+ setDebuggerOptions ,
14+ } from '@solid-devtools/debugger/setup'
Original file line number Diff line number Diff line change 11import type * as API from './setup.ts'
22
3- export const { setLocatorOptions} : typeof API = {
4- setLocatorOptions ( ) {
5- /**/
6- } ,
3+ export const {
4+ setLocatorOptions,
5+ setDebuggerOptions,
6+ } : typeof API = {
7+ setLocatorOptions ( ) { /**/ } ,
8+ setDebuggerOptions ( ) { /**/ } ,
79}
You can’t perform that action at this time.
0 commit comments