File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed
packages/solid-query-devtools Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,7 @@ export const SolidQueryDevtools: typeof SolidQueryDevtoolsComp = isDev
99 return null
1010 }
1111
12- export const SolidQueryDevtoolsPanel : typeof SolidQueryDevtoolsCompPanel =
13- isDev
12+ export const SolidQueryDevtoolsPanel : typeof SolidQueryDevtoolsCompPanel = isDev
1413 ? clientOnly ( ( ) => import ( './devtoolsPanel' ) )
1514 : function ( ) {
1615 return null
Original file line number Diff line number Diff line change @@ -2,13 +2,16 @@ import { defineConfig } from 'tsup'
22import { generateTsupOptions , parsePresetOptions } from 'tsup-preset-solid'
33
44const preset_options = {
5- entries : [ {
6- entry : 'src/index.tsx' ,
7- dev_entry : true ,
8- } , {
9- entry : 'src/production.tsx' ,
10- dev_entry : true ,
11- } ] ,
5+ entries : [
6+ {
7+ entry : 'src/index.tsx' ,
8+ dev_entry : true ,
9+ } ,
10+ {
11+ entry : 'src/production.tsx' ,
12+ dev_entry : true ,
13+ } ,
14+ ] ,
1215 cjs : true ,
1316 drop_console : true ,
1417}
You can’t perform that action at this time.
0 commit comments