Skip to content

Commit 896ef1b

Browse files
ci: apply automated fixes
1 parent efac6bf commit 896ef1b

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

packages/solid-query-devtools/src/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

packages/solid-query-devtools/tsup.config.ts

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@ import { defineConfig } from 'tsup'
22
import { generateTsupOptions, parsePresetOptions } from 'tsup-preset-solid'
33

44
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+
],
1215
cjs: true,
1316
drop_console: true,
1417
}

0 commit comments

Comments
 (0)