Skip to content

Commit d1292cd

Browse files
authored
Merge pull request #71 from macalinao/igm/upgrade-deps
Upgrade dependencies to latest
2 parents 06e99dd + 42846e7 commit d1292cd

File tree

13 files changed

+331
-286
lines changed

13 files changed

+331
-286
lines changed

.changeset/moody-moles-post.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
"@macalinao/wallet-adapter-compat": patch
3+
"@macalinao/react-quarry": patch
4+
"@macalinao/gill-extra": patch
5+
"@macalinao/zod-solana": patch
6+
"example-dapp": patch
7+
"@macalinao/quarry": patch
8+
"@macalinao/grill": patch
9+
---
10+
11+
Dependency bumps

apps/example-dapp/biome.jsonc

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
3+
"extends": "//",
4+
"linter": {
5+
"domains": {
6+
"react": "recommended"
7+
},
8+
"rules": {
9+
"suspicious": {
10+
"noUnknownAtRules": "off"
11+
},
12+
"correctness": {
13+
"useImportExtensions": "off"
14+
}
15+
}
16+
},
17+
"overrides": [
18+
{
19+
"includes": ["src/routeTree.gen.ts"],
20+
"assist": {
21+
"actions": {
22+
"source": {
23+
"organizeImports": "off"
24+
}
25+
}
26+
},
27+
"linter": {
28+
"enabled": false
29+
},
30+
"formatter": {
31+
"enabled": false
32+
}
33+
}
34+
]
35+
}

apps/example-dapp/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"dependencies": {
2929
"@gillsdk/react": "catalog:",
30-
"@hookform/resolvers": "^5.2.1",
30+
"@hookform/resolvers": "^5.2.2",
3131
"@macalinao/grill": "workspace:*",
3232
"@macalinao/wallet-adapter-compat": "workspace:*",
3333
"@radix-ui/react-dialog": "^1.1.15",
@@ -43,39 +43,39 @@
4343
"@solana/wallet-adapter-react": "catalog:",
4444
"@solana/wallet-adapter-react-ui": "^0.9.39",
4545
"@solana/wallet-adapter-wallets": "^0.19.37",
46-
"@tailwindcss/vite": "^4.1.13",
46+
"@tailwindcss/vite": "^4.1.14",
4747
"@tanstack/react-query": "catalog:",
48-
"@tanstack/react-router": "^1.131.35",
48+
"@tanstack/react-router": "^1.132.31",
4949
"class-variance-authority": "^0.7.1",
5050
"clsx": "^2.1.1",
5151
"gill": "catalog:",
5252
"lucide-react": "^0.542.0",
5353
"react": "catalog:",
5454
"react-dom": "catalog:",
55-
"react-hook-form": "^7.62.0",
55+
"react-hook-form": "^7.63.0",
5656
"sonner": "^2.0.7",
5757
"tailwind-merge": "^3.3.1",
58-
"zod": "^4.1.5"
58+
"zod": "^4.1.11"
5959
},
6060
"devDependencies": {
61-
"@eslint/js": "^9.35.0",
61+
"@eslint/js": "^9.36.0",
6262
"@macalinao/eslint-config": "catalog:",
6363
"@macalinao/tsconfig": "catalog:",
64-
"@tanstack/react-query-devtools": "^5.87.1",
65-
"@tanstack/react-router-devtools": "^1.131.35",
66-
"@tanstack/router-plugin": "^1.131.35",
64+
"@tanstack/react-query-devtools": "^5.90.2",
65+
"@tanstack/react-router-devtools": "^1.132.31",
66+
"@tanstack/router-plugin": "^1.132.31",
6767
"@types/react": "catalog:",
6868
"@types/react-dom": "catalog:",
69-
"@vitejs/plugin-react": "^5.0.2",
69+
"@vitejs/plugin-react": "^5.0.4",
7070
"eslint": "catalog:",
7171
"eslint-plugin-react-hooks": "^5.2.0",
72-
"eslint-plugin-react-refresh": "^0.4.20",
73-
"globals": "^16.3.0",
74-
"tailwindcss": "^4.1.13",
75-
"tw-animate-css": "^1.3.8",
72+
"eslint-plugin-react-refresh": "^0.4.23",
73+
"globals": "^16.4.0",
74+
"tailwindcss": "^4.1.14",
75+
"tw-animate-css": "^1.4.0",
7676
"typescript": "catalog:",
77-
"typescript-eslint": "^8.42.0",
78-
"vite": "^7.1.4",
77+
"typescript-eslint": "^8.45.0",
78+
"vite": "^7.1.9",
7979
"vite-plugin-node-polyfills": "^0.24.0",
8080
"vite-tsconfig-paths": "^5.1.4"
8181
},

apps/example-dapp/src/components/ui/sidebar.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@ import { Slot } from "@radix-ui/react-slot";
33
import { cva } from "class-variance-authority";
44
import { PanelLeftIcon } from "lucide-react";
55
import * as React from "react";
6-
import { Button } from "@/components/ui/button";
7-
import { Input } from "@/components/ui/input";
8-
import { Separator } from "@/components/ui/separator";
6+
import { Button } from "@/components/ui/button.js";
7+
import { Input } from "@/components/ui/input.js";
8+
import { Separator } from "@/components/ui/separator.js";
99
import {
1010
Sheet,
1111
SheetContent,
1212
SheetDescription,
1313
SheetHeader,
1414
SheetTitle,
15-
} from "@/components/ui/sheet";
16-
import { Skeleton } from "@/components/ui/skeleton";
15+
} from "@/components/ui/sheet.js";
16+
import { Skeleton } from "@/components/ui/skeleton.js";
1717
import {
1818
Tooltip,
1919
TooltipContent,
2020
TooltipProvider,
2121
TooltipTrigger,
22-
} from "@/components/ui/tooltip";
23-
import { useIsMobile } from "@/hooks/use-mobile";
24-
import { cn } from "@/lib/utils";
22+
} from "@/components/ui/tooltip.js";
23+
import { useIsMobile } from "@/hooks/use-mobile.js";
24+
import { cn } from "@/lib/utils.js";
2525

2626
const SIDEBAR_COOKIE_NAME = "sidebar_state";
2727
const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7;
@@ -94,7 +94,7 @@ function SidebarProvider({
9494
} else {
9595
setOpen((open) => !open);
9696
}
97-
}, [isMobile, setOpen, setOpenMobile]);
97+
}, [isMobile, setOpen]);
9898

9999
// Adds a keyboard shortcut to toggle the sidebar.
100100
React.useEffect(() => {
@@ -128,7 +128,7 @@ function SidebarProvider({
128128
setOpenMobile,
129129
toggleSidebar,
130130
}),
131-
[state, open, setOpen, isMobile, openMobile, setOpenMobile, toggleSidebar],
131+
[state, open, setOpen, isMobile, openMobile, toggleSidebar],
132132
);
133133

134134
return (

biome.jsonc

Lines changed: 2 additions & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -1,125 +1,4 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
3-
"vcs": {
4-
"enabled": true,
5-
"clientKind": "git",
6-
"useIgnoreFile": true,
7-
"defaultBranch": "master"
8-
},
9-
"files": {
10-
"includes": [
11-
"**",
12-
"!**/bun.lock",
13-
"!apps/example-dapp/src/routeTree.gen.ts"
14-
]
15-
},
16-
"formatter": {
17-
"enabled": true,
18-
"formatWithErrors": false,
19-
"indentStyle": "space",
20-
"indentWidth": 2,
21-
"lineEnding": "lf",
22-
"lineWidth": 80,
23-
"attributePosition": "auto",
24-
"bracketSpacing": true
25-
},
26-
"linter": {
27-
"enabled": true,
28-
"domains": {
29-
"project": "recommended"
30-
},
31-
"rules": {
32-
"recommended": true,
33-
"nursery": {
34-
"useConsistentTypeDefinitions": "error",
35-
"noFloatingPromises": "error",
36-
"noUnnecessaryConditions": "error"
37-
},
38-
"complexity": {
39-
"useSimplifiedLogicExpression": "error"
40-
},
41-
"suspicious": {
42-
"noUnknownAtRules": "off",
43-
"noDoubleEquals": "error"
44-
},
45-
"style": {
46-
"useImportType": {
47-
"level": "error",
48-
"options": {
49-
"style": "separatedType"
50-
}
51-
},
52-
"noParameterAssign": "error",
53-
"useAsConstAssertion": "error",
54-
"useDefaultParameterLast": "error",
55-
"useEnumInitializers": "error",
56-
"useSelfClosingElements": "error",
57-
"useSingleVarDeclarator": "error",
58-
"noUnusedTemplateLiteral": "error",
59-
"useNumberNamespace": "error",
60-
"noInferrableTypes": "error",
61-
"noUselessElse": "error",
62-
"useBlockStatements": "error",
63-
"useCollapsedElseIf": "error",
64-
"useConsistentArrayType": {
65-
"level": "error",
66-
"options": {
67-
"syntax": "shorthand"
68-
}
69-
},
70-
"useShorthandAssign": "error"
71-
},
72-
"correctness": {
73-
"noUnusedVariables": "warn",
74-
"noUnusedImports": "error",
75-
"noUndeclaredDependencies": "error",
76-
"useImportExtensions": {
77-
"level": "error",
78-
"options": {
79-
"forceJsExtensions": true
80-
}
81-
}
82-
}
83-
}
84-
},
85-
"assist": {
86-
"actions": {
87-
"source": {
88-
// Organizes imports and splits out type imports into a separate line
89-
"organizeImports": {
90-
"level": "on",
91-
"options": {
92-
"groups": [{ "type": true }]
93-
}
94-
}
95-
}
96-
}
97-
},
98-
"javascript": {
99-
"formatter": {
100-
"jsxQuoteStyle": "double",
101-
"quoteProperties": "asNeeded",
102-
"trailingCommas": "all",
103-
"semicolons": "always",
104-
"arrowParentheses": "always",
105-
"bracketSameLine": false,
106-
"attributePosition": "auto",
107-
"bracketSpacing": true
108-
}
109-
},
110-
"overrides": [
111-
{
112-
"includes": ["apps/example-dapp/src/routeTree.gen.ts"],
113-
"assist": {
114-
"actions": {
115-
"source": {
116-
"organizeImports": "off"
117-
}
118-
}
119-
},
120-
"linter": {
121-
"enabled": false
122-
}
123-
}
124-
]
2+
"$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
3+
"extends": ["@macalinao/biome-config/base"]
1254
}

0 commit comments

Comments
 (0)