Skip to content

Commit 6b4cfc1

Browse files
authored
Merge pull request #23 from coji/chore/bumpup
`chore(deps): 依存関係を更新`
2 parents 43e814d + 1b4756a commit 6b4cfc1

4 files changed

Lines changed: 1930 additions & 1835 deletions

File tree

app/services/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type Required<T, K extends keyof T> = T & {
1818
export interface AppUser extends User {
1919
handle?: string
2020
}
21-
let userHandle: string | undefined = undefined
21+
let userHandle: string | undefined
2222

2323
export const AuthContext = createContext<AppUser | null>(null)
2424
AuthContext.displayName = 'AuthContext'

biome.json

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3-
"organizeImports": {
4-
"enabled": true
5-
},
6-
"vcs": {
7-
"enabled": true,
8-
"clientKind": "git",
9-
"useIgnoreFile": true
10-
},
11-
"linter": {
12-
"enabled": true,
13-
"rules": {
14-
"recommended": true
15-
},
16-
"ignore": ["build"]
17-
}
2+
"$schema": "https://biomejs.dev/schemas/2.1.3/schema.json",
3+
"assist": { "actions": { "source": { "organizeImports": "on" } } },
4+
"vcs": {
5+
"enabled": true,
6+
"clientKind": "git",
7+
"useIgnoreFile": true
8+
},
9+
"linter": {
10+
"enabled": true,
11+
"rules": {
12+
"recommended": true,
13+
"correctness": {
14+
"noUnusedVariables": {
15+
"level": "warn",
16+
"options": {
17+
"ignoreRestSiblings": true
18+
}
19+
}
20+
}
21+
},
22+
"includes": ["**", "!**/build"]
23+
24+
}
1825
}

package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -15,52 +15,52 @@
1515
"start": "npx sirv-cli build/client/ --single"
1616
},
1717
"dependencies": {
18-
"@conform-to/react": "^1.7.0",
19-
"@conform-to/zod": "^1.7.0",
20-
"@react-router/node": "7.6.2",
21-
"@tailwindcss/vite": "^4.1.10",
18+
"@conform-to/react": "^1.8.2",
19+
"@conform-to/zod": "^1.8.2",
20+
"@react-router/node": "7.7.1",
21+
"@tailwindcss/vite": "^4.1.11",
2222
"class-variance-authority": "^0.7.1",
2323
"clsx": "^2.1.1",
2424
"dayjs": "^1.11.13",
25-
"firebase": "^11.9.1",
26-
"isbot": "^5.1.28",
27-
"lucide-react": "^0.515.0",
28-
"marked": "^15.0.12",
25+
"firebase": "^12.0.0",
26+
"isbot": "^5.1.29",
27+
"lucide-react": "^0.534.0",
28+
"marked": "^16.1.1",
2929
"next-themes": "^0.4.6",
3030
"pure-uuid": "^1.8.1",
3131
"radix-ui": "latest",
32-
"react": "19.1.0",
33-
"react-dom": "19.1.0",
32+
"react": "19.1.1",
33+
"react-dom": "19.1.1",
3434
"react-markdown": "^10.1.0",
35-
"react-router": "7.6.2",
36-
"react-router-dom": "7.6.2",
37-
"react-twc": "^1.4.2",
35+
"react-router": "7.7.1",
36+
"react-router-dom": "7.7.1",
37+
"react-twc": "^1.5.1",
3838
"remix-flat-routes": "^0.8.5",
39-
"sonner": "^2.0.5",
39+
"sonner": "^2.0.6",
4040
"tailwind-merge": "^3.3.1",
4141
"tailwindcss-animate": "^1.0.7",
4242
"zod": "^3.25.64",
4343
"zodix": "^0.4.4"
4444
},
4545
"devDependencies": {
46-
"@biomejs/biome": "^1.9.4",
46+
"@biomejs/biome": "^2.1.3",
4747
"@mdx-js/rollup": "^3.1.0",
48-
"@react-router/dev": "7.6.2",
49-
"@react-router/remix-routes-option-adapter": "^7.6.2",
48+
"@react-router/dev": "7.7.1",
49+
"@react-router/remix-routes-option-adapter": "^7.7.1",
5050
"@tailwindcss/typography": "^0.5.16",
51-
"@types/react": "^19.1.8",
52-
"@types/react-dom": "^19.1.6",
53-
"firebase-tools": "^14.7.0",
51+
"@types/react": "^19.1.9",
52+
"@types/react-dom": "^19.1.7",
53+
"firebase-tools": "^14.11.1",
5454
"npm-run-all": "^4.1.5",
55-
"prettier": "^3.5.3",
56-
"prettier-plugin-organize-imports": "^4.1.0",
57-
"prettier-plugin-tailwindcss": "^0.6.12",
55+
"prettier": "^3.6.2",
56+
"prettier-plugin-organize-imports": "^4.2.0",
57+
"prettier-plugin-tailwindcss": "^0.6.14",
5858
"remark-frontmatter": "^5.0.0",
5959
"remark-mdx-frontmatter": "^5.2.0",
6060
"rollup-plugin-visualizer": "^6.0.3",
61-
"tailwindcss": "^4.1.10",
61+
"tailwindcss": "^4.1.11",
6262
"typescript": "^5.8.3",
63-
"vite": "^6.3.5",
63+
"vite": "^7.0.6",
6464
"vite-tsconfig-paths": "^5.1.4"
6565
},
6666
"engines": {

0 commit comments

Comments
 (0)