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
9
9
return null
10
10
}
11
11
12
- export const SolidQueryDevtoolsPanel : typeof SolidQueryDevtoolsCompPanel =
13
- isDev
12
+ export const SolidQueryDevtoolsPanel : typeof SolidQueryDevtoolsCompPanel = isDev
14
13
? clientOnly ( ( ) => import ( './devtoolsPanel' ) )
15
14
: function ( ) {
16
15
return null
Original file line number Diff line number Diff line change @@ -2,13 +2,16 @@ import { defineConfig } from 'tsup'
2
2
import { generateTsupOptions , parsePresetOptions } from 'tsup-preset-solid'
3
3
4
4
const 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
+ ] ,
12
15
cjs : true ,
13
16
drop_console : true ,
14
17
}
You can’t perform that action at this time.
0 commit comments