-
Notifications
You must be signed in to change notification settings - Fork 0
Consolidate and validate Dependabot updates #208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
57be582
da8017d
79a18f1
ed6e498
646d75c
e368d48
b61248a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| import { defineConfig, globalIgnores } from "eslint/config"; | ||
| import nextVitals from "eslint-config-next/core-web-vitals"; | ||
| import nextTypescript from "eslint-config-next/typescript"; | ||
|
|
||
| export default defineConfig([ | ||
| ...nextVitals, | ||
| ...nextTypescript, | ||
| globalIgnores([".next/**", "out/**", "build/**", "next-env.d.ts"]), | ||
| ]); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,15 +5,15 @@ | |
| "packageManager": "pnpm@11.1.2", | ||
| "scripts": { | ||
| "dev": "next dev --turbopack", | ||
| "build": "next build", | ||
| "build": "next build --webpack", | ||
| "start": "next start", | ||
| "lint": "next lint" | ||
| "lint": "eslint ." | ||
| }, | ||
| "dependencies": { | ||
| "@crossmint/client-sdk-react-ui": "4.2.0", | ||
| "@formo/analytics": "^1.35.0", | ||
| "clsx": "^2.1.1", | ||
| "next": "^15.5.22", | ||
| "next": "^16.3.0", | ||
|
cubic-dev-ai[bot] marked this conversation as resolved.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P3: This migration moves the example to Next.js 16, but the workspace README still documents it as 'a Next.js 15 (App Router) + React 19... project'. Update the README's target-stack description to Next 16 so the documented compatibility notes match the bumped dependency. Prompt for AI agents |
||
| "react": "^19.2.8", | ||
| "react-dom": "^19.2.8", | ||
| "react-transition-group": "^4.4.5", | ||
|
|
@@ -22,10 +22,12 @@ | |
| }, | ||
| "devDependencies": { | ||
| "@tailwindcss/postcss": "^4.3.3", | ||
| "@types/node": "^20.19.43", | ||
| "@types/react": "^19.2.17", | ||
| "@types/react-dom": "^19.2.3", | ||
| "@types/node": "^26.1.2", | ||
| "@types/react": "^19.2.18", | ||
| "@types/react-dom": "^19.2.4", | ||
| "@types/react-transition-group": "^4.4.12", | ||
| "eslint": "^9.39.5", | ||
| "eslint-config-next": "^16.3.0", | ||
| "tailwindcss": "^4.3.3", | ||
| "typescript": "^5.9.3" | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After this upgrade,
with-crossmint's existinglintscript still runsnext lint; the same mismatch exists in the newly upgradedwith-privy,with-thirdweb, andwith-turnkeyexamples. The Next.js 16 migration guide states thatnext lintwas removed in favor of invoking ESLint or Biome directly, sopnpm lintnow exits with an unknown-command error in each of these examples.Useful? React with 👍 / 👎.