Skip to content

Commit 7745484

Browse files
committed
formatting
1 parent b2980fb commit 7745484

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"preview": "bun run --bun astro preview",
1313
"typecheck:astro": "bun run --bun astro check",
1414
"typecheck:tsc": "tsc --noEmit --pretty",
15-
"typecheck": "bun run typecheck:tsc && bun run typecheck:astro",
15+
"typecheck": "bun run typecheck:astro && bun run typecheck:tsc",
1616
"prebuild": "run-p --silent --continue-on-error create:symlinks move:downloads",
1717
"test:unit": "vitest run --config './test/vitest.config.ts' --coverage",
1818
"test:unit:watch": "vitest watch --config './test/vitest.config.ts' --coverage",

src/features/theme-switch/components/ThemeSwitch.astro

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
2-
import { MoonIcon, SunIcon } from '@lucide/astro'
3-
import styles from './ThemeSwitch.module.css'
2+
import { MoonIcon, SunIcon } from '@lucide/astro'
3+
import styles from './ThemeSwitch.module.css'
44
---
5+
56
<theme-switch
67
class={styles.themeSwitch}
78
title="Toggle Theme"

0 commit comments

Comments
 (0)