Skip to content

Commit 409b83f

Browse files
chore(deps): update dependency @biomejs/biome to v2.4.7 (#430)
* chore(deps): update dependency @biomejs/biome to v2.4.7 * chore(deps): remove unused jose dependency jose is no longer imported anywhere in the codebase. Made-with: Cursor * fix: resolve biome 2.4.7 lint errors Sort named export specifiers alphabetically in shadcn/ui components to comply with the new organizeImports behavior in Biome 2.4.7, and replace non-null assertions with safe alternatives in utils.test.ts. Made-with: Cursor --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Giuseppe Scuglia <peppescg@gmail.com>
1 parent eaf127c commit 409b83f

15 files changed

Lines changed: 76 additions & 79 deletions

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.4.7/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
"clsx": "2.1.1",
5858
"date-fns": "^4.1.0",
5959
"dexie": "^4.2.1",
60-
"jose": "^6.1.2",
6160
"json-schema-faker": "^0.5.6",
6261
"lucide-react": "^0.577.0",
6362
"msw": "^2.12.2",
@@ -77,7 +76,7 @@
7776
"tailwind-merge": "3.5.0"
7877
},
7978
"devDependencies": {
80-
"@biomejs/biome": "2.4.6",
79+
"@biomejs/biome": "2.4.7",
8180
"@hey-api/openapi-ts": "0.94.0",
8281
"@mswjs/http-middleware": "^0.10.2",
8382
"@playwright/test": "^1.56.1",

pnpm-lock.yaml

Lines changed: 38 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/ui/alert-dialog.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,14 @@ AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
127127

128128
export {
129129
AlertDialog,
130-
AlertDialogPortal,
131-
AlertDialogOverlay,
132-
AlertDialogTrigger,
130+
AlertDialogAction,
131+
AlertDialogCancel,
133132
AlertDialogContent,
134-
AlertDialogHeader,
133+
AlertDialogDescription,
135134
AlertDialogFooter,
135+
AlertDialogHeader,
136+
AlertDialogOverlay,
137+
AlertDialogPortal,
136138
AlertDialogTitle,
137-
AlertDialogDescription,
138-
AlertDialogAction,
139-
AlertDialogCancel,
139+
AlertDialogTrigger,
140140
};

src/components/ui/alert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ function AlertDescription({
6363
);
6464
}
6565

66-
export { Alert, AlertTitle, AlertDescription };
66+
export { Alert, AlertDescription, AlertTitle };

src/components/ui/avatar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ function AvatarFallback({
5050
);
5151
}
5252

53-
export { Avatar, AvatarImage, AvatarFallback };
53+
export { Avatar, AvatarFallback, AvatarImage };

src/components/ui/card.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ function CardFooter({ className, ...props }: React.ComponentProps<"div">) {
8383

8484
export {
8585
Card,
86-
CardHeader,
87-
CardFooter,
88-
CardTitle,
8986
CardAction,
90-
CardDescription,
9187
CardContent,
88+
CardDescription,
89+
CardFooter,
90+
CardHeader,
91+
CardTitle,
9292
};

src/components/ui/dropdown-menu.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -240,18 +240,18 @@ function DropdownMenuSubContent({
240240

241241
export {
242242
DropdownMenu,
243-
DropdownMenuPortal,
244-
DropdownMenuTrigger,
243+
DropdownMenuCheckboxItem,
245244
DropdownMenuContent,
246245
DropdownMenuGroup,
247-
DropdownMenuLabel,
248246
DropdownMenuItem,
249-
DropdownMenuCheckboxItem,
247+
DropdownMenuLabel,
248+
DropdownMenuPortal,
250249
DropdownMenuRadioGroup,
251250
DropdownMenuRadioItem,
252251
DropdownMenuSeparator,
253252
DropdownMenuShortcut,
254253
DropdownMenuSub,
255-
DropdownMenuSubTrigger,
256254
DropdownMenuSubContent,
255+
DropdownMenuSubTrigger,
256+
DropdownMenuTrigger,
257257
};

src/components/ui/popover.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ function PopoverAnchor({
4545
return <PopoverPrimitive.Anchor data-slot="popover-anchor" {...props} />;
4646
}
4747

48-
export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor };
48+
export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger };

src/components/ui/sheet.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,13 @@ SheetDescription.displayName = SheetPrimitive.Description.displayName;
128128

129129
export {
130130
Sheet,
131-
SheetPortal,
132-
SheetOverlay,
133-
SheetTrigger,
134131
SheetClose,
135132
SheetContent,
136-
SheetHeader,
133+
SheetDescription,
137134
SheetFooter,
135+
SheetHeader,
136+
SheetOverlay,
137+
SheetPortal,
138138
SheetTitle,
139-
SheetDescription,
139+
SheetTrigger,
140140
};

0 commit comments

Comments
 (0)