Skip to content

Commit

Permalink
Fix lint and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
domdomegg committed Oct 29, 2024
1 parent bd10cfb commit f6b2970
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion apps/availability/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"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",
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@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",
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
4 changes: 2 additions & 2 deletions apps/meet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"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",
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"
}
}
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["CI", "NEXT_PUBLIC_*"],
"pipeline": {
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "!dist/cache/**"]
Expand Down

0 comments on commit f6b2970

Please sign in to comment.