Skip to content

Commit

Permalink
Update all dependencies. (vercel#1005)
Browse files Browse the repository at this point in the history
  • Loading branch information
leerob authored May 8, 2023
1 parent 86dca04 commit 3be4f4e
Show file tree
Hide file tree
Showing 4 changed files with 458 additions and 381 deletions.
4 changes: 3 additions & 1 deletion lib/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export const createUrl = (pathname: string, params: URLSearchParams) => {
import { ReadonlyURLSearchParams } from 'next/navigation';

export const createUrl = (pathname: string, params: URLSearchParams | ReadonlyURLSearchParams) => {
const paramsString = params.toString();
const queryString = `${paramsString.length ? '?' : ''}${paramsString}`;

Expand Down
3 changes: 0 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ module.exports = {
// Disabling on production builds because we're running checks on PRs via GitHub Actions.
ignoreDuringBuilds: true
},
experimental: {
appDir: true
},
images: {
formats: ['image/avif', 'image/webp'],
remotePatterns: [
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,33 @@
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@headlessui/react": "^1.7.10",
"@vercel/og": "^0.1.0",
"@headlessui/react": "^1.7.14",
"@vercel/og": "^0.5.4",
"clsx": "^1.2.1",
"framer-motion": "^8.4.0",
"framer-motion": "^10.12.8",
"is-empty-iterable": "^3.0.0",
"next": "13.3.1",
"next": "13.4.1",
"react": "18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "18.2.0"
},
"devDependencies": {
"@playwright/test": "^1.31.2",
"@playwright/test": "^1.33.0",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/node": "20.1.0",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@vercel/git-hooks": "^1.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.35.0",
"eslint-config-next": "^13.3.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-unicorn": "^45.0.2",
"lint-staged": "^13.1.1",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.2",
"tailwindcss": "^3.2.6",
"typescript": "4.9.5"
"autoprefixer": "^10.4.14",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unicorn": "^47.0.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.3.2",
"typescript": "5.0.4"
}
}
Loading

0 comments on commit 3be4f4e

Please sign in to comment.