Skip to content

Commit

Permalink
feat(deps): update next to v15.1 (#1105)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalexiei authored Dec 20, 2024
1 parent cc6ed5a commit 8d97b6b
Show file tree
Hide file tree
Showing 7 changed files with 768 additions and 509 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ module.exports = {
},
extends: [
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jsx-a11y/recommended",
"next",
Expand Down
2 changes: 1 addition & 1 deletion 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/pages/building-your-application/configuring/typescript for more information.
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
4 changes: 2 additions & 2 deletions next.config.mjs → next.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { NextConfig } from "next"
import { withContentlayer } from "next-contentlayer"
import withBundleAnalyzer from "@next/bundle-analyzer"

/** @type {import('next').NextConfig} */
const nextConfig = {
const nextConfig: NextConfig = {
typescript: {
ignoreBuildErrors: true,
},
Expand Down
27 changes: 17 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@
"@hookform/devtools": "4.3.1",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.4.5",
"@next/mdx": "15.1.0",
"@types/node": "^20.3.1",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"contentlayer": "^0.3.3",
"contentlayer": "^0.3.4",
"date-fns": "^2.30.0",
"little-state-machine": "^4.8.0",
"next": "^14.1.1",
"next-contentlayer": "^0.3.3",
"next": "15.1.0",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.2.1",
"prism-react-renderer": "^2.0.5",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-github-btn": "1.4.0",
"react-hook-form": "7.44.3",
"react-simple-animate": "^3.5.2",
Expand All @@ -33,14 +33,15 @@
"sortablejs": "1.15.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.5",
"@types/react": "^18.3.11",
"@next/bundle-analyzer": "15.1.0",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@types/react-helmet": "^6.1.6",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "^13.4.5",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
Expand Down Expand Up @@ -74,5 +75,11 @@
"pnpm run format:fix"
]
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"pnpm": {
"overrides": {
"@types/react": "18.3.17",
"@types/react-dom": "18.3.5"
}
}
}
Loading

0 comments on commit 8d97b6b

Please sign in to comment.