Skip to content

Commit d82a2fa

Browse files
committed
Update dependencies to latest versions
1 parent e23ce5d commit d82a2fa

File tree

7 files changed

+781
-620
lines changed

7 files changed

+781
-620
lines changed

.husky/_/pre-commit

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
#!/bin/sh
2+
3+
if [ "$LEFTHOOK_VERBOSE" = "1" -o "$LEFTHOOK_VERBOSE" = "true" ]; then
4+
set -x
5+
fi
6+
7+
if [ "$LEFTHOOK" = "0" ]; then
8+
exit 0
9+
fi
10+
11+
call_lefthook()
12+
{
13+
if test -n "$LEFTHOOK_BIN"
14+
then
15+
"$LEFTHOOK_BIN" "$@"
16+
elif lefthook.exe -h >/dev/null 2>&1
17+
then
18+
lefthook.exe "$@"
19+
elif lefthook.bat -h >/dev/null 2>&1
20+
then
21+
lefthook.bat "$@"
22+
else
23+
dir="$(git rev-parse --show-toplevel)"
24+
osArch=$(uname | tr '[:upper:]' '[:lower:]')
25+
cpuArch=$(uname -m | sed 's/aarch64/arm64/;s/x86_64/x64/')
26+
if test -f "$dir/node_modules/lefthook-${osArch}-${cpuArch}/bin/lefthook.exe"
27+
then
28+
"$dir/node_modules/lefthook-${osArch}-${cpuArch}/bin/lefthook.exe" "$@"
29+
elif test -f "$dir/node_modules/@evilmartians/lefthook/bin/lefthook-${osArch}-${cpuArch}/lefthook.exe"
30+
then
31+
"$dir/node_modules/@evilmartians/lefthook/bin/lefthook-${osArch}-${cpuArch}/lefthook.exe" "$@"
32+
elif test -f "$dir/node_modules/@evilmartians/lefthook-installer/bin/lefthook.exe"
33+
then
34+
"$dir/node_modules/@evilmartians/lefthook-installer/bin/lefthook.exe" "$@"
35+
elif test -f "$dir/node_modules/lefthook/bin/index.js"
36+
then
37+
"$dir/node_modules/lefthook/bin/index.js" "$@"
38+
39+
elif bundle exec lefthook -h >/dev/null 2>&1
40+
then
41+
bundle exec lefthook "$@"
42+
elif yarn lefthook -h >/dev/null 2>&1
43+
then
44+
yarn lefthook "$@"
45+
elif pnpm lefthook -h >/dev/null 2>&1
46+
then
47+
pnpm lefthook "$@"
48+
elif swift package plugin lefthook >/dev/null 2>&1
49+
then
50+
swift package --disable-sandbox plugin lefthook "$@"
51+
elif command -v mint >/dev/null 2>&1
52+
then
53+
mint run csjones/lefthook-plugin "$@"
54+
else
55+
echo "Can't find lefthook in PATH"
56+
fi
57+
fi
58+
}
59+
60+
call_lefthook run "pre-commit" "$@"

.husky/_/prepare-commit-msg

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
#!/bin/sh
2+
3+
if [ "$LEFTHOOK_VERBOSE" = "1" -o "$LEFTHOOK_VERBOSE" = "true" ]; then
4+
set -x
5+
fi
6+
7+
if [ "$LEFTHOOK" = "0" ]; then
8+
exit 0
9+
fi
10+
11+
call_lefthook()
12+
{
13+
if test -n "$LEFTHOOK_BIN"
14+
then
15+
"$LEFTHOOK_BIN" "$@"
16+
elif lefthook.exe -h >/dev/null 2>&1
17+
then
18+
lefthook.exe "$@"
19+
elif lefthook.bat -h >/dev/null 2>&1
20+
then
21+
lefthook.bat "$@"
22+
else
23+
dir="$(git rev-parse --show-toplevel)"
24+
osArch=$(uname | tr '[:upper:]' '[:lower:]')
25+
cpuArch=$(uname -m | sed 's/aarch64/arm64/;s/x86_64/x64/')
26+
if test -f "$dir/node_modules/lefthook-${osArch}-${cpuArch}/bin/lefthook.exe"
27+
then
28+
"$dir/node_modules/lefthook-${osArch}-${cpuArch}/bin/lefthook.exe" "$@"
29+
elif test -f "$dir/node_modules/@evilmartians/lefthook/bin/lefthook-${osArch}-${cpuArch}/lefthook.exe"
30+
then
31+
"$dir/node_modules/@evilmartians/lefthook/bin/lefthook-${osArch}-${cpuArch}/lefthook.exe" "$@"
32+
elif test -f "$dir/node_modules/@evilmartians/lefthook-installer/bin/lefthook.exe"
33+
then
34+
"$dir/node_modules/@evilmartians/lefthook-installer/bin/lefthook.exe" "$@"
35+
elif test -f "$dir/node_modules/lefthook/bin/index.js"
36+
then
37+
"$dir/node_modules/lefthook/bin/index.js" "$@"
38+
39+
elif bundle exec lefthook -h >/dev/null 2>&1
40+
then
41+
bundle exec lefthook "$@"
42+
elif yarn lefthook -h >/dev/null 2>&1
43+
then
44+
yarn lefthook "$@"
45+
elif pnpm lefthook -h >/dev/null 2>&1
46+
then
47+
pnpm lefthook "$@"
48+
elif swift package plugin lefthook >/dev/null 2>&1
49+
then
50+
swift package --disable-sandbox plugin lefthook "$@"
51+
elif command -v mint >/dev/null 2>&1
52+
then
53+
mint run csjones/lefthook-plugin "$@"
54+
else
55+
echo "Can't find lefthook in PATH"
56+
fi
57+
fi
58+
}
59+
60+
call_lefthook run "prepare-commit-msg" "$@"

app/library/icon/icons/types.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// This file is generated by icon spritesheet generator
22

3-
export const iconNames = [
4-
"Ghost",
5-
] as const
3+
export const iconNames = ["Ghost"] as const
64

7-
export type IconName = typeof iconNames[number]
5+
export type IconName = (typeof iconNames)[number]

package.json

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -28,60 +28,60 @@
2828
},
2929
"dependencies": {
3030
"@forge42/seo-tools": "1.3.0",
31-
"@react-router/node": "7.1.2",
31+
"@react-router/node": "7.1.5",
3232
"clsx": "2.1.1",
33-
"hono": "4.6.12",
34-
"i18next": "24.2.1",
35-
"i18next-browser-languagedetector": "8.0.0",
33+
"hono": "4.6.20",
34+
"i18next": "24.2.2",
35+
"i18next-browser-languagedetector": "8.0.2",
3636
"i18next-http-backend": "3.0.2",
37-
"isbot": "5.1.17",
37+
"isbot": "5.1.22",
3838
"pretty-cache-header": "1.0.0",
3939
"react": "19.0.0",
4040
"react-dom": "19.0.0",
41-
"react-i18next": "15.1.1",
42-
"react-router": "7.1.2",
43-
"react-router-hono-server": "2.6.2",
44-
"remix-hono": "0.0.16",
41+
"react-i18next": "15.4.0",
42+
"react-router": "7.1.5",
43+
"react-router-hono-server": "2.8.2",
44+
"remix-hono": "0.0.18",
4545
"remix-i18next": "7.0.2",
46-
"tailwind-merge": "2.5.4",
47-
"zod": "3.23.8"
46+
"tailwind-merge": "3.0.1",
47+
"zod": "3.24.1"
4848
},
4949
"devDependencies": {
5050
"@babel/preset-typescript": "7.26.0",
5151
"@biomejs/biome": "1.9.4",
52-
"@dotenvx/dotenvx": "1.24.5",
53-
"@react-router/dev": "7.1.2",
54-
"@react-router/fs-routes": "7.1.2",
55-
"@tailwindcss/vite": "4.0.0",
52+
"@dotenvx/dotenvx": "1.34.0",
53+
"@react-router/dev": "7.1.5",
54+
"@react-router/fs-routes": "7.1.5",
55+
"@tailwindcss/vite": "4.0.3",
5656
"@testing-library/react": "16.2.0",
57-
"@types/node": "22.9.1",
57+
"@types/node": "22.13.1",
5858
"@types/prompt": "1.1.9",
59-
"@types/react": "19.0.0",
60-
"@types/react-dom": "19.0.1",
61-
"@vitest/browser": "3.0.3",
62-
"@vitest/coverage-v8": "3.0.3",
63-
"@vitest/ui": "3.0.3",
59+
"@types/react": "19.0.8",
60+
"@types/react-dom": "19.0.3",
61+
"@vitest/browser": "3.0.5",
62+
"@vitest/coverage-v8": "3.0.5",
63+
"@vitest/ui": "3.0.5",
6464
"babel-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
65-
"chalk": "5.3.0",
66-
"happy-dom": "15.11.6",
67-
"knip": "5.39.4",
68-
"lefthook": "1.8.4",
69-
"playwright": "1.49.0",
65+
"chalk": "5.4.1",
66+
"happy-dom": "16.8.1",
67+
"knip": "5.43.6",
68+
"lefthook": "1.10.10",
69+
"playwright": "1.50.1",
7070
"prompt": "1.3.0",
7171
"react-router-devtools": "1.1.3",
72-
"tailwindcss": "4.0.0",
72+
"tailwindcss": "4.0.3",
7373
"tsx": "4.19.2",
74-
"typescript": "5.6.3",
74+
"typescript": "5.7.3",
7575
"vite": "6.0.11",
7676
"vite-plugin-babel": "1.3.0",
77-
"vite-plugin-icons-spritesheet": "2.2.1",
78-
"vite-tsconfig-paths": "5.1.3",
79-
"vitest": "3.0.3",
77+
"vite-plugin-icons-spritesheet": "3.0.0",
78+
"vite-tsconfig-paths": "5.1.4",
79+
"vitest": "3.0.5",
8080
"vitest-browser-react": "0.0.4"
8181
},
82-
"packageManager": "pnpm@9.14.2",
82+
"packageManager": "pnpm@10.2.0",
8383
"optionalDependencies": {
84-
"@rollup/rollup-linux-x64-gnu": "^4.31.0"
84+
"@rollup/rollup-linux-x64-gnu": "^4.34.3"
8585
},
8686
"engines": {
8787
"node": ">=22.11.0",

0 commit comments

Comments
 (0)