Skip to content

Commit

Permalink
chore: Bump Nextjs to 15, bump dependencies (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
domdomegg authored Oct 29, 2024
1 parent f78b05b commit 650103e
Show file tree
Hide file tree
Showing 13 changed files with 9,920 additions and 5,344 deletions.
2 changes: 1 addition & 1 deletion apps/availability/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
4 changes: 2 additions & 2 deletions apps/availability/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
},
"dependencies": {
"@bluedot/ui": "*",
"airtable-ts": "^1.2.0",
"airtable-ts": "^1.3.2",
"axios": "^1.6.8",
"clsx": "^2.1.0",
"http-errors": "^2.0.0",
"next": "^14.0.3",
"next": "^15.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend-example/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
4 changes: 2 additions & 2 deletions apps/frontend-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
"@tanstack/react-query": "^5.29.0",
"@ts-rest/core": "^3.41.1",
"@ts-rest/react-query": "^3.41.1",
"airtable-ts": "^1.2.0",
"airtable-ts": "^1.3.2",
"axios": "^1.6.8",
"axios-hooks": "^5.0.2",
"http-errors": "^2.0.0",
"next": "^14.0.3",
"next": "^15.0.1",
"oidc-client-ts": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend-example/src/pages/authed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const CourseListView: React.FC = () => {

return (
<div className="grid md:grid-cols-4 gap-4">
{data.body.map((course) => (
{data?.body.map((course) => (
<CardButton key={course.courseId} onPress={() => alert('test')}>
<H2>{course.name}</H2>
</CardButton>
Expand Down
2 changes: 1 addition & 1 deletion apps/login-account-proxy/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
2 changes: 1 addition & 1 deletion apps/login-account-proxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@bluedot/ui": "*",
"axios": "^1.6.8",
"http-errors": "^2.0.0",
"next": "^14.0.3",
"next": "^15.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/meet/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
6 changes: 3 additions & 3 deletions apps/meet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
"dependencies": {
"@bluedot/ui": "*",
"@types/jsonwebtoken": "^9.0.6",
"@zoom/meetingsdk": "^3.8.5",
"airtable-ts": "^1.2.0",
"@zoom/meetingsdk": "^3.9.2",
"airtable-ts": "^1.3.2",
"axios": "^1.6.8",
"axios-hooks": "^5.0.2",
"clsx": "^2.1.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"next": "^14.3.0-canary.14",
"next": "^15.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss-scoped-preflight": "^3.2.6"
Expand Down
2 changes: 1 addition & 1 deletion apps/meet/src/components/MeetingView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type MeetingViewProps = {
page: PageState & { name: 'room' }
};

export const ZOOM_VERSION = '3.8.5';
export const ZOOM_VERSION = '3.9.2';

declare let ZoomMtg: typeof ZoomMtgType;

Expand Down
2 changes: 1 addition & 1 deletion libraries/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"devDependencies": {
"@types/eslint": "^8.44.8",
"eslint-config-domdomegg": "^1.2.3",
"eslint-config-turbo": "^1.10.12",
"eslint-config-turbo": "^2.2.3",
"typescript": "^5.3.2"
}
}
Loading

0 comments on commit 650103e

Please sign in to comment.