Skip to content

Commit

Permalink
chore: Update package dependencies, bump, refactor parsing params wit…
Browse files Browse the repository at this point in the history
…h zodix, refactor App component to use Layout component, add dynamic routing using remix-routes
  • Loading branch information
coji committed Jun 5, 2024
1 parent 9e49f18 commit 1855f32
Show file tree
Hide file tree
Showing 5 changed files with 1,557 additions and 1,866 deletions.
2 changes: 1 addition & 1 deletion app/components/ui/alert-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const AlertDialogOverlay = React.forwardRef<
>(({ className, ...props }, ref) => (
<AlertDialogPrimitive.Overlay
className={cn(
'fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0',
'fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0',
className,
)}
{...props}
Expand Down
2 changes: 1 addition & 1 deletion app/components/ui/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const DialogOverlay = React.forwardRef<
<DialogPrimitive.Overlay
ref={ref}
className={cn(
'fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0',
'fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0',
className,
)}
{...props}
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.8.0/schema.json",
"organizeImports": {
"enabled": true
},
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"start": "npx sirv-cli build/client/ --single"
},
"dependencies": {
"@conform-to/react": "^1.1.3",
"@conform-to/zod": "^1.1.3",
"@conform-to/react": "^1.1.4",
"@conform-to/zod": "^1.1.4",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
Expand All @@ -24,45 +24,45 @@
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@remix-run/node": "^2.9.1",
"@remix-run/react": "^2.9.1",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.11",
"firebase": "^10.11.1",
"lucide-react": "^0.377.0",
"firebase": "^10.12.2",
"lucide-react": "^0.383.0",
"marked": "^12.0.2",
"pure-uuid": "^1.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-twc": "^1.4.1",
"remix-flat-routes": "^0.6.4",
"remix-routes": "^1.7.3",
"remix-flat-routes": "^0.6.5",
"remix-routes": "^1.7.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.6",
"zod": "^3.23.8",
"zodix": "^0.4.4"
},
"devDependencies": {
"@biomejs/biome": "^1.7.2",
"@biomejs/biome": "^1.8.0",
"@mdx-js/rollup": "^3.0.1",
"@remix-run/dev": "^2.9.1",
"@remix-run/dev": "^2.9.2",
"@tailwindcss/typography": "^0.5.13",
"@types/react": "^18.3.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"firebase-tools": "^13.8.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"firebase-tools": "^13.10.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier": "^3.3.1",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.14",
"prettier-plugin-tailwindcss": "^0.6.1",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite": "^5.2.12",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
Expand Down
Loading

0 comments on commit 1855f32

Please sign in to comment.