Skip to content

Commit

Permalink
🆙bump: version up dependencies (#513)
Browse files Browse the repository at this point in the history
* 🆙bump: version up dependencies

* [autofix.ci] apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
Marukome0743 and autofix-ci[bot] authored Sep 16, 2024
1 parent 247dd09 commit c1d19c2
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 22 deletions.
10 changes: 5 additions & 5 deletions app/components/layout/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,12 +155,12 @@ function Navigation(): JSX.Element {
function ThemeController(): JSX.Element {
return (
<div className="dropdown dropdown-end">
<div tabIndex={0} role="button" className="btn gap-1">
<button type="button" className="btn gap-1">
<SwatchIcon className="size-5 text-success" />
テーマ
<ChevronDownIcon className="size-5" />
</div>
<ul className="bg-base-300 dropdown-content h-52 overflow-y-auto p-2 rounded-box shadow-2xl z-10">
<span className="hidden md:block">テーマ</span>
<ChevronDownIcon className="hidden size-5 md:block" />
</button>
<ul className="bg-base-300 dropdown-content h-52 overflow-y-auto rounded-box shadow-2xl z-10">
{themes.map((theme) => (
<li key={theme.name}>
<input
Expand Down
2 changes: 1 addition & 1 deletion app/page.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect, test } from "bun:test"
import Home from "@/app/page"
import { render } from "@testing-library/react"
import Home from "./page"

render(<Home />)

Expand Down
17 changes: 4 additions & 13 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
},
"linter": {
"rules": {
"all": true
"all": true,
"suspicious": {
"noReactSpecificProps": "off"
}
}
},
"formatter": {
Expand All @@ -26,18 +29,6 @@
"indentStyle": "space"
}
},
"css": {
"parser": {
"cssModules": true
},
"formatter": {
"enabled": true,
"indentStyle": "space"
},
"linter": {
"enabled": true
}
},
"json": {
"parser": {
"allowComments": true
Expand Down
Binary file modified bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
"react-dom": "canary"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@biomejs/biome": "^1.9.1",
"@happy-dom/global-registrator": "^15.7.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/bun": "^1.1.9",
"@types/react": "^18.3.5",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"daisyui": "^4.12.10",
"postcss": "^8.4.45",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2"
},
Expand Down

0 comments on commit c1d19c2

Please sign in to comment.