Skip to content

Commit 5539524

Browse files
authored
Feat/update deps (#58)
Fixes # # Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. ## Type of change Please mark relevant options with an `x` in the brackets. - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update - [ ] Algorithm update - updates algorithm documentation/questions/answers etc. - [ ] Other (please describe): # How Has This Been Tested? Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration - [ ] Integration tests - [ ] Unit tests - [ ] Manual tests - [ ] No tests required # Reviewer checklist Mark everything that needs to be checked before merging the PR. - [ ] Check if the UI is working as expected and is satisfactory - [ ] Check if the code is well documented - [ ] Check if the behavior is what is expected - [ ] Check if the code is well tested - [ ] Check if the code is readable and well formatted - [ ] Additional checks (document below if any) # Screenshots (if appropriate): # Questions (if appropriate):
1 parent d791d9e commit 5539524

File tree

11 files changed

+1641
-2402
lines changed

11 files changed

+1641
-2402
lines changed

app/library/link/Link.browser.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { waitFor } from "@testing-library/react"
2-
import { userEvent } from "@vitest/browser/context"
32
import { useLocation } from "react-router"
43
import type { StubRouteEntry } from "tests/setup.browser"
4+
import { userEvent } from "vitest/browser"
55
import { Link, type LinkProps } from "./link"
66

77
const getEntries: (linkProps?: LinkProps) => StubRouteEntry[] = (linkProps) => [

app/localization/resource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const languages = ["en", "bs"] as const
55
export const supportedLanguages = [...languages]
66
export type Language = (typeof languages)[number]
77

8-
export type Resource = {
8+
type Resource = {
99
common: typeof english
1010
}
1111

app/tailwind.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@import "tailwindcss";
2-
/** biome-ignore lint/suspicious/noUnknownAtRules: This is a rule for the Tailwind CSS file */
32
@theme {
43
/* Your theme styles go here */
54
--animate-float: float 3s ease-in-out infinite;

biome.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
}
2121
}
2222
},
23+
"css": {
24+
"parser": {
25+
"tailwindDirectives": true
26+
}
27+
},
2328
"linter": {
2429
"enabled": true,
2530
"rules": {

knip.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://unpkg.com/knip@5/schema.json",
3-
"entry": ["scripts/*.{ts,js}", "app/routes.ts", "app/server/*.ts", "app/library/icon/Icon.tsx"],
3+
"entry": ["scripts/*.{ts,js}", "app/server/*.ts", "app/library/icon/Icon.tsx"],
44
"remix": true,
55
"lefthook": true,
66
"project": ["**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}"],

package.json

Lines changed: 38 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -21,67 +21,68 @@
2121
"validate": "pnpm run check && pnpm run typecheck && pnpm run test && pnpm run check:unused",
2222
"check": "biome check .",
2323
"check:fix": "biome check --fix .",
24-
"check:unused": "knip --max-issues 1",
24+
"check:unused": "knip",
2525
"check:unused:fix": "knip --fix",
2626
"typegen": "react-router typegen",
2727
"postinstall": "pnpm run typegen"
2828
},
2929
"dependencies": {
3030
"@epic-web/client-hints": "1.3.8",
3131
"@forge42/seo-tools": "1.4.5",
32-
"@react-router/node": "7.9.4",
32+
"@react-router/node": "7.11.0",
3333
"clsx": "2.1.1",
34-
"hono": "4.9.12",
35-
"i18next": "25.6.0",
34+
"hono": "4.11.1",
35+
"i18next": "25.7.3",
3636
"i18next-browser-languagedetector": "8.2.0",
3737
"i18next-http-backend": "3.0.2",
38-
"isbot": "5.1.31",
38+
"isbot": "5.1.32",
3939
"pretty-cache-header": "1.0.0",
40-
"react": "19.2.0",
41-
"react-dom": "19.2.0",
42-
"react-i18next": "16.0.1",
43-
"react-router": "7.9.4",
44-
"react-router-hono-server": "2.21.0",
40+
"react": "19.2.3",
41+
"react-dom": "19.2.3",
42+
"react-i18next": "16.5.0",
43+
"react-router": "7.11.0",
44+
"react-router-hono-server": "2.22.0",
4545
"remix-hono": "0.0.18",
4646
"remix-i18next": "7.4.2",
47-
"tailwind-merge": "3.3.1",
48-
"zod": "4.1.12"
47+
"tailwind-merge": "3.4.0",
48+
"zod": "4.2.1"
4949
},
5050
"devDependencies": {
51-
"@babel/preset-typescript": "7.27.1",
52-
"@biomejs/biome": "2.2.6",
53-
"@dotenvx/dotenvx": "1.51.0",
54-
"@react-router/dev": "7.9.4",
55-
"@react-router/fs-routes": "7.9.4",
56-
"@tailwindcss/vite": "4.1.14",
57-
"@testing-library/react": "16.3.0",
58-
"@types/node": "24.7.2",
51+
"@babel/preset-typescript": "7.28.5",
52+
"@biomejs/biome": "2.3.10",
53+
"@dotenvx/dotenvx": "1.51.2",
54+
"@react-router/dev": "7.11.0",
55+
"@react-router/fs-routes": "7.11.0",
56+
"@tailwindcss/vite": "4.1.18",
57+
"@testing-library/react": "16.3.1",
58+
"@types/node": "25.0.3",
5959
"@types/prompt": "1.1.9",
60-
"@types/react": "19.2.2",
61-
"@types/react-dom": "19.2.2",
62-
"@vitest/browser": "3.2.4",
63-
"@vitest/coverage-v8": "3.2.4",
64-
"@vitest/ui": "3.2.4",
60+
"@types/react": "19.2.7",
61+
"@types/react-dom": "19.2.3",
62+
"@vitest/browser": "4.0.16",
63+
"@vitest/browser-playwright": "4.0.16",
64+
"@vitest/coverage-v8": "4.0.16",
65+
"@vitest/ui": "4.0.16",
6566
"babel-plugin-react-compiler": "1.0.0",
6667
"chalk": "5.6.2",
67-
"knip": "5.65.0",
68-
"lefthook": "1.13.6",
69-
"playwright": "1.56.0",
68+
"knip": "5.77.1",
69+
"lefthook": "2.0.12",
70+
"playwright": "1.57.0",
7071
"prompt": "1.3.0",
71-
"react-router-devtools": "5.1.3",
72-
"tailwindcss": "4.1.14",
73-
"tsx": "4.20.6",
72+
"react-router-devtools": "6.0.0",
73+
"tailwindcss": "4.1.18",
74+
"tsx": "4.21.0",
7475
"typescript": "5.9.3",
75-
"vite": "7.1.9",
76+
"vite": "7.3.0",
7677
"vite-plugin-babel": "1.3.2",
7778
"vite-plugin-icons-spritesheet": "3.0.1",
78-
"vite-tsconfig-paths": "5.1.4",
79-
"vitest": "3.2.4",
80-
"vitest-browser-react": "1.0.1"
79+
"vite-tsconfig-paths": "6.0.3",
80+
"vitest": "4.0.16",
81+
"vitest-browser-react": "2.0.2"
8182
},
82-
"packageManager": "pnpm@10.18.2",
83+
"packageManager": "pnpm@10.26.2",
8384
"optionalDependencies": {
84-
"@rollup/rollup-linux-x64-gnu": "^4.52.4"
85+
"@rollup/rollup-linux-x64-gnu": "^4.54.0"
8586
},
8687
"engines": {
8788
"node": ">=24.3.0",

0 commit comments

Comments
 (0)