Skip to content

Commit

Permalink
chore: upgrade @openlite/ui to v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
castrogarciajs committed Sep 3, 2024
1 parent 3995ed3 commit 000a3e3
Show file tree
Hide file tree
Showing 6 changed files with 742 additions and 3,541 deletions.
2 changes: 0 additions & 2 deletions app/(shop)/shopped/products/[name]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import { ArrowLeft } from 'lucide-react'
import imagen from '@assets/product-test.webp'
import { ProductAccount } from '@components/pricing/product-account'

export const runtime = 'edge'

export default function Page({ params }: { params: { name: string } }) {
return (
<>
Expand Down
2 changes: 0 additions & 2 deletions app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import Link from 'next/link'

export const runtime = 'edge'

export default function NotFoundPage() {
return (
<div className="h-screen">
Expand Down
2 changes: 1 addition & 1 deletion components/carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { productsMocks } from '@/utils/mocks'
export default function CarouselProduct() {
return (
<div className="p-10">
<Carousel className="w-full h-auto">
<Carousel orientation='horizontal'>
<CarouselContent>
{productsMocks.map((product, index) => (
<CarouselItem key={index} className="md:basis-1/2 lg:basis-1/3">
Expand Down
9 changes: 1 addition & 8 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev'

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
}

if (process.env.NODE_ENV === 'development')
await setupDevPlatform()
const nextConfig = {}

export default nextConfig
49 changes: 23 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,37 +11,34 @@
"clean": "pnpx rimraf pnpm-lock.yaml node_modules"
},
"dependencies": {
"@cloudflare/next-on-pages": "^1.11.2",
"@libsql/client": "^0.6.0",
"@openlite/ui": "0.4.0",
"@tanstack/react-table": "8.16.0",
"@libsql/client": "^0.10.0",
"@openlite/ui": "0.4.2",
"@tanstack/react-table": "8.20.5",
"clsx": "^2.1.1",
"drizzle-orm": "^0.30.10",
"lucide-react": "0.371.0",
"next": "14.2.3",
"next-view-transitions": "^0.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "7.51.3",
"recharts": "2.12.5",
"sharp": "0.33.3",
"sonner": "^1.4.41",
"drizzle-orm": "^0.33.0",
"lucide-react": "0.438.0",
"next": "14.2.7",
"next-view-transitions": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "7.53.0",
"recharts": "2.12.7",
"sharp": "0.33.5",
"sonner": "^1.5.0",
"swr": "^2.2.5",
"zustand": "4.5.2"
"zustand": "4.5.5"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240502.0",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@types/node": "22.5.2",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.20.18",
"drizzle-kit": "^0.24.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.2",
"postcss": "8.4.38",
"tailwindcss": "3.4.3",
"typescript": "5.4.5",
"wrangler": "^3.53.1"
"eslint-config-next": "14.2.7",
"postcss": "8.4.44",
"tailwindcss": "3.4.10",
"typescript": "5.5.4"
},
"packageManager": "pnpm@9.7.0"
"packageManager": "pnpm@9.7.1"
}
Loading

0 comments on commit 000a3e3

Please sign in to comment.