Skip to content

Commit

Permalink
chore: update dependencies 📦 (heyxyz#4547)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint authored Jan 20, 2024
2 parents d7d7424 + 64c245f commit ebbdde1
Show file tree
Hide file tree
Showing 7 changed files with 632 additions and 625 deletions.
8 changes: 4 additions & 4 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"typecheck": "tsc --pretty"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.495.0",
"@clickhouse/client": "^0.2.8",
"@aws-sdk/client-sts": "^3.496.0",
"@clickhouse/client": "^0.2.9",
"@hey/abis": "workspace:*",
"@hey/data": "workspace:*",
"@hey/lib": "workspace:*",
Expand All @@ -30,7 +30,7 @@
"axios": "^1.6.5",
"cors": "^2.8.5",
"country-code-lookup": "^0.1.1",
"dotenv": "^16.0.0",
"dotenv": "^16.3.2",
"express": "^4.17.1",
"express-file-routing": "^3.0.3",
"fast-xml-parser": "^4.3.3",
Expand Down Expand Up @@ -64,7 +64,7 @@
"prisma": "^5.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.2",
"vite": "^5.0.11",
"vite": "^5.0.12",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.1"
}
Expand Down
12 changes: 6 additions & 6 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
},
"dependencies": {
"@apollo/client": "^3.8.10",
"@aws-sdk/client-s3": "^3.495.0",
"@aws-sdk/lib-storage": "^3.495.0",
"@aws-sdk/client-s3": "^3.496.0",
"@aws-sdk/lib-storage": "^3.496.0",
"@graphiql/toolkit": "^0.9.1",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
Expand All @@ -38,12 +38,12 @@
"@livepeer/react": "^3.1.9",
"@radix-ui/react-hover-card": "^1.0.7",
"@tanstack/react-query": "^5.17.15",
"@wagmi/connectors": "^4.1.4",
"@wagmi/connectors": "^4.1.6",
"alchemy-sdk": "^3.1.1",
"axios": "^1.6.5",
"browser-image-compression": "^2.0.2",
"chart.js": "^4.4.1",
"dotenv": "^16.3.1",
"dotenv": "^16.3.2",
"esbuild": "^0.19.11",
"framer-motion": "^10.18.0",
"graphiql": "^3.1.0",
Expand Down Expand Up @@ -73,9 +73,9 @@
"usehooks-ts": "2.9.5",
"uuid": "^9.0.1",
"viem": "^2.4.0",
"wagmi": "^2.2.1",
"wagmi": "^2.3.1",
"zod": "^3.22.4",
"zustand": "^4.4.7"
"zustand": "^4.5.0"
},
"devDependencies": {
"@hey/config": "workspace:*",
Expand Down
4 changes: 3 additions & 1 deletion apps/web/src/components/Publication/PublicationProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ const PublicationProfile: FC<FeedUserProfileProps> = ({
showUserPreview
>
<div className="flex max-w-sm items-center">
<b className="truncate">{getProfile(profile).displayName}</b>
<div className="truncate font-semibold">
{getProfile(profile).displayName}
</div>
<Slug
className="ml-1.5 truncate text-sm"
slug={getProfile(profile).slugWithPrefix}
Expand Down
4 changes: 3 additions & 1 deletion apps/web/src/components/Shared/GroupProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ const GroupProfile: FC<GroupProfileProps> = ({
<>
<div className="flex max-w-sm items-center">
<div className="text-md grid">
<b className="truncate">{sanitizeDisplayName(group.name)}</b>
<div className="truncate font-semibold">
{sanitizeDisplayName(group.name)}
</div>
</div>
{group.featured ? (
<FireIcon className="ml-1 size-4 text-yellow-500" />
Expand Down
4 changes: 3 additions & 1 deletion apps/web/src/components/Shared/UserProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ const UserProfile: FC<UserProfileProps> = ({
<>
<div className="flex max-w-sm items-center">
<div className={cn(isBig ? 'font-bold' : 'text-md', 'grid')}>
<b className="truncate">{getProfile(profile).displayName}</b>
<div className="truncate font-semibold">
{getProfile(profile).displayName}
</div>
</div>
{isVerified(profile.id) ? (
<CheckBadgeIcon className="text-brand-500 ml-1 size-4" />
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/lib/fonts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const heyFont = localFont({
{
path: '../../public/fonts/SofiaProSoftMed-webfont.woff2',
style: 'medium',
weight: '500'
weight: '600'
},
{
path: '../../public/fonts/SofiaProSoftBold-webfont.woff2',
Expand Down
Loading

0 comments on commit ebbdde1

Please sign in to comment.