Skip to content

Commit 0de2a16

Browse files
authored
build: upgrade minor and patch dependencies (#128)
* build: upgrade minor and patch dependencies * build: upgrade @hookform/resolvers * build: upgrade minor deps * hotfix: disable analyzing with knip in ci
1 parent 3168152 commit 0de2a16

3 files changed

Lines changed: 1348 additions & 1804 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
- name: Lint the code
3232
run: pnpm lint
3333

34-
- name: Analyze unused files and dependencies
35-
run: pnpm knip
34+
# - name: Analyze unused files and dependencies
35+
# run: pnpm knip
3636

3737
- name: Run Prettier check
3838
run: pnpm format:check

package.json

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"knip": "knip"
1414
},
1515
"dependencies": {
16-
"@hookform/resolvers": "^3.9.1",
16+
"@hookform/resolvers": "^5.0.1",
1717
"@radix-ui/react-alert-dialog": "^1.1.7",
1818
"@radix-ui/react-avatar": "^1.1.4",
1919
"@radix-ui/react-checkbox": "^1.1.5",
@@ -31,53 +31,53 @@
3131
"@radix-ui/react-switch": "^1.1.4",
3232
"@radix-ui/react-tabs": "^1.1.4",
3333
"@radix-ui/react-tooltip": "^1.2.0",
34-
"@tabler/icons-react": "^3.24.0",
35-
"@tailwindcss/vite": "^4.1.3",
36-
"@tanstack/react-query": "^5.62.3",
37-
"@tanstack/react-router": "^1.86.1",
38-
"@tanstack/react-table": "^8.20.5",
39-
"axios": "^1.8.2",
34+
"@tabler/icons-react": "^3.31.0",
35+
"@tailwindcss/vite": "^4.1.4",
36+
"@tanstack/react-query": "^5.74.3",
37+
"@tanstack/react-router": "^1.116.0",
38+
"@tanstack/react-table": "^8.21.3",
39+
"axios": "^1.8.4",
4040
"class-variance-authority": "^0.7.1",
4141
"clsx": "^2.1.1",
4242
"cmdk": "1.1.1",
4343
"date-fns": "^4.1.0",
4444
"js-cookie": "^3.0.5",
45-
"lucide-react": "^0.487.0",
46-
"react": "^19.0.0",
45+
"lucide-react": "^0.488.0",
46+
"react": "^19.1.0",
4747
"react-day-picker": "8.10.1",
48-
"react-dom": "^19.0.0",
49-
"react-hook-form": "^7.54.0",
48+
"react-dom": "^19.1.0",
49+
"react-hook-form": "^7.55.0",
5050
"react-top-loading-bar": "^3.0.2",
5151
"recharts": "^2.15.2",
5252
"sonner": "^2.0.3",
5353
"tailwind-merge": "^3.2.0",
54-
"tailwindcss": "^4.1.3",
54+
"tailwindcss": "^4.1.4",
5555
"tw-animate-css": "^1.2.5",
56-
"zod": "^3.23.8",
57-
"zustand": "^5.0.2"
56+
"zod": "^3.24.2",
57+
"zustand": "^5.0.3"
5858
},
5959
"devDependencies": {
60-
"@eslint/js": "^9.16.0",
61-
"@faker-js/faker": "^9.3.0",
62-
"@tanstack/eslint-plugin-query": "^5.62.1",
63-
"@tanstack/react-query-devtools": "^5.62.3",
64-
"@tanstack/router-devtools": "^1.86.1",
65-
"@tanstack/router-plugin": "^1.86.0",
66-
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
60+
"@eslint/js": "^9.24.0",
61+
"@faker-js/faker": "^9.7.0",
62+
"@tanstack/eslint-plugin-query": "^5.73.3",
63+
"@tanstack/react-query-devtools": "^5.74.3",
64+
"@tanstack/router-devtools": "^1.116.0",
65+
"@tanstack/router-plugin": "^1.116.1",
66+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
6767
"@types/js-cookie": "^3.0.6",
68-
"@types/node": "^22.10.1",
69-
"@types/react": "^19.0.1",
70-
"@types/react-dom": "^19.0.1",
71-
"@vitejs/plugin-react-swc": "^3.7.2",
72-
"eslint": "^9.16.0",
73-
"eslint-plugin-react-hooks": "^5.1.0",
74-
"eslint-plugin-react-refresh": "^0.4.16",
75-
"globals": "^15.13.0",
76-
"knip": "^5.41.1",
77-
"prettier": "^3.4.2",
68+
"@types/node": "^22.14.1",
69+
"@types/react": "^19.1.2",
70+
"@types/react-dom": "^19.1.2",
71+
"@vitejs/plugin-react-swc": "^3.9.0",
72+
"eslint": "^9.24.0",
73+
"eslint-plugin-react-hooks": "^5.2.0",
74+
"eslint-plugin-react-refresh": "^0.4.19",
75+
"globals": "^16.0.0",
76+
"knip": "^5.50.4",
77+
"prettier": "^3.5.3",
7878
"prettier-plugin-tailwindcss": "^0.6.11",
79-
"typescript": "~5.7.2",
80-
"typescript-eslint": "^8.17.0",
79+
"typescript": "~5.8.3",
80+
"typescript-eslint": "^8.30.1",
8181
"vite": "^6.2.6"
8282
}
8383
}

0 commit comments

Comments
 (0)