Skip to content

Commit c43e68d

Browse files
ci: apply automated fixes
1 parent afb6ec0 commit c43e68d

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@
8484
"@tanstack/solid-devtools": "workspace:*",
8585
"@tanstack/devtools-vite": "workspace:*"
8686
}
87-
}
87+
}

packages/devtools/src/styles/use-styles.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ const stylesFactory = (theme: DevtoolsStore['settings']['theme']) => {
222222
width: 56px;
223223
height: 56px;
224224
transition: all 0.3s ease;
225-
outline-offset: 2px;
225+
outline-offset: 2px;
226226
border-radius: ${border.radius.full};
227227
outline: 2px solid transparent;
228228
}
@@ -236,7 +236,8 @@ const stylesFactory = (theme: DevtoolsStore['settings']['theme']) => {
236236
pointer-events: auto;
237237
visibility: visible;
238238
}
239-
& > img:focus-visible, img:hover {
239+
& > img:focus-visible,
240+
img:hover {
240241
outline: 2px solid ${t(colors.black, colors.black)};
241242
}
242243
`,

packages/devtools/tsup.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineConfig, } from 'tsup'
1+
import { defineConfig } from 'tsup'
22
import { generateTsupOptions, parsePresetOptions } from 'tsup-preset-solid'
33

44
const preset_options = {
@@ -15,10 +15,10 @@ export default defineConfig(() => {
1515
const parsed_data = parsePresetOptions(preset_options)
1616
const tsup_options = generateTsupOptions(parsed_data)
1717

18-
return tsup_options.map(option => ({
18+
return tsup_options.map((option) => ({
1919
...option,
2020
loader: {
2121
'.png': 'dataurl',
22-
}
22+
},
2323
}))
2424
})

0 commit comments

Comments
 (0)