Skip to content

Commit

Permalink
bump packages, add ai sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxLeiter committed Jul 15, 2023
1 parent e93158c commit e9ee9b0
Show file tree
Hide file tree
Showing 4 changed files with 1,793 additions and 1,056 deletions.
6 changes: 3 additions & 3 deletions app/lib/hooks/media-query-hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ type Options = {
value: string | number
}

const _useMediaQuery = ({ feature, value }: Options) => {
const useMediaQuery = ({ feature, value }: Options) => {
const [matches, setMatches] = useState(false)

const query = `(${feature}: ${value})`
Expand All @@ -55,9 +55,9 @@ const _useMediaQuery = ({ feature, value }: Options) => {
}

const useReducedMotion = () => {
return _useMediaQuery({ feature: 'prefers-reduced-motion', value: 'reduce' })
return useMediaQuery({ feature: 'prefers-reduced-motion', value: 'reduce' })
}

export { useReducedMotion }

export default _useMediaQuery
export default useMediaQuery
7 changes: 7 additions & 0 deletions app/lib/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ const Projects: Project[] = [
role: 'Creator',
years: ['2022', 'present'],
},
{
title: "Vercel AI SDK",
description: "Build AI-powered applications with React, Svelte, and Vue",
href: "https://github.com/vercel-labs/ai",
role: "Maintainer",
years: ["2023", "present"],
},
{
title: 'The Lounge',
description:
Expand Down
56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,67 +16,67 @@
"@fec/remark-a11y-emoji": "^3.1.0",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/bundle-analyzer": "13.4.5-canary.9",
"@next/eslint-plugin-next": "13.4.1-canary.2",
"@next/mdx": "13.4.5-canary.9",
"@octokit/rest": "^19.0.7",
"@next/bundle-analyzer": "13.4.10",
"@next/eslint-plugin-next": "13.4.10",
"@next/mdx": "13.4.10",
"@octokit/rest": "^20.0.1",
"@supabase/supabase-js": "2.21.0",
"@vercel/analytics": "^1.0.1",
"bright": "^0.8.2",
"globby": "^13.1.4",
"htmlparser2": "^8.0.2",
"globby": "^13.2.2",
"htmlparser2": "^9.0.0",
"lodash.debounce": "4.0.8",
"next": "13.4.5-canary.9",
"next": "13.4.10",
"next-mdx-remote": "^4.4.1",
"next-remote-watch": "2.0.0",
"next-themes": "^0.2.1",
"patch-package": "^7.0.0",
"postcss": "8.4.23",
"prettier": "^2.8.8",
"patch-package": "^7.0.2",
"postcss": "8.4.26",
"prettier": "^3.0.0",
"react": "18.3.0-canary-16d053d59-20230506",
"react-dom": "18.3.0-canary-16d053d59-20230506",
"react-tweet": "^2.0.1",
"react-tweet": "^3.0.3",
"rehype-highlight": "^6.0.0",
"rehype-img-size": "^1.0.1",
"remark-frontmatter": "^4.0.1",
"remark-toc": "^8.0.1",
"rss-parser": "3.13.0",
"swr": "2.1.5",
"swr": "2.2.0",
"tiny-glob": "^0.2.9",
"youtubei": "0.0.1-rc.36"
},
"devDependencies": {
"@types/marked": "4.3.0",
"@types/marked": "5.0.1",
"@types/mdx": "^2.0.5",
"@types/node": "18.16.3",
"@types/prettier": "2.7.2",
"@types/react": "18.2.2",
"@types/react-dom": "18.2.3",
"@types/node": "20.4.2",
"@types/prettier": "2.7.3",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@types/rss": "0.0.30",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"clsx": "^1.2.1",
"concurrently": "8.0.1",
"critters": "0.0.16",
"dotenv": "16.0.3",
"eslint": "8.39.0",
"eslint-config-next": "13.4.5-canary.0",
"concurrently": "8.2.0",
"critters": "0.0.19",
"dotenv": "16.3.1",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"gray-matter": "4.0.3",
"marked": "5.0.0",
"marked": "5.1.1",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-hover-media-feature": "1.0.2",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "8.3.2",
"postcss-preset-env": "9.0.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"rss": "1.2.2",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"typescript": "5.1.6",
"typescript-plugin-css-modules": "5.0.1"
},
"prettier": {
Expand Down
Loading

0 comments on commit e9ee9b0

Please sign in to comment.