Skip to content

Commit d8ac12f

Browse files
committed
core: update
1 parent ca82567 commit d8ac12f

11 files changed

Lines changed: 373 additions & 206 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,8 @@ jobs:
3636
- name: Performing Format
3737
run: pnpm run format
3838

39+
- name: Performing Check
40+
run: pnpm run check
41+
3942
- name: Performing Build
40-
run: pnpm run build
43+
run: pnpm run build

.husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
pnpm run typecheck
22
pnpm run lint
33
pnpm run format
4+
pnpm run check
45
pnpm run build

package.json

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,38 +9,39 @@
99
"lint": "biome lint --write .",
1010
"lint:fix": "biome lint --write . --unsafe",
1111
"format": "biome format --write .",
12+
"check": "biome check --write .",
1213
"typecheck": "tsc --noEmit",
1314
"prepare": "husky",
14-
"build:prepare": "pnpm run typecheck && pnpm run lint && pnpm run format && pnpm run build"
15+
"build:prepare": "pnpm run typecheck && pnpm run lint && pnpm run format && pnpm run check && pnpm run build"
1516
},
1617
"dependencies": {
1718
"@radix-ui/react-label": "^2.1.0",
1819
"@radix-ui/react-slot": "^1.1.0",
19-
"@tanstack/react-router": "^1.62.1",
20+
"@tanstack/react-router": "^1.77.0",
2021
"class-variance-authority": "^0.7.0",
2122
"clsx": "^2.1.1",
22-
"lucide-react": "^0.447.0",
23+
"lucide-react": "^0.453.0",
2324
"next-themes": "^0.3.0",
2425
"react": "^18.3.1",
2526
"react-dom": "^18.3.1",
26-
"tailwind-merge": "^2.5.3",
27+
"tailwind-merge": "^2.5.4",
2728
"tailwindcss-animate": "^1.0.7",
28-
"unhead": "^1.11.7"
29+
"unhead": "^1.11.10"
2930
},
3031
"devDependencies": {
31-
"@biomejs/biome": "^1.9.3",
32-
"@tanstack/router-plugin": "^1.62.0",
33-
"@tanstack/router-vite-plugin": "^1.62.0",
34-
"@types/node": "^22.7.4",
35-
"@types/react": "^18.3.11",
36-
"@types/react-dom": "^18.3.0",
37-
"@vitejs/plugin-react": "^4.3.2",
32+
"@biomejs/biome": "^1.9.4",
33+
"@tanstack/router-plugin": "^1.76.4",
34+
"@tanstack/router-vite-plugin": "^1.76.4",
35+
"@types/node": "^22.8.1",
36+
"@types/react": "^18.3.12",
37+
"@types/react-dom": "^18.3.1",
38+
"@vitejs/plugin-react": "^4.3.3",
3839
"autoprefixer": "^10.4.20",
3940
"husky": "^9.1.6",
4041
"postcss": "^8.4.47",
41-
"tailwindcss": "^3.4.13",
42-
"typescript": "^5.6.2",
43-
"vite": "^5.4.8"
42+
"tailwindcss": "^3.4.14",
43+
"typescript": "^5.6.3",
44+
"vite": "^5.4.10"
4445
},
45-
"packageManager": "pnpm@9.12.0"
46+
"packageManager": "pnpm@9.12.2"
4647
}

0 commit comments

Comments
 (0)