-
Notifications
You must be signed in to change notification settings - Fork 330
feat: upgraded all pnpm, node and next.js platform deps to the absolute latest LTS versions available on Vercel. #3362
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 11 commits
30e8b86
a68e68d
7ff7afd
d75ec89
9d04a6c
85a41f1
b7c877e
79c6647
4958bee
b74922c
14c4c78
765363a
6c43af7
0d266b9
607db35
977b8d8
0924514
4ca4f08
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| v22.14.0 | ||
| v24.0.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| nodejs 22.14.0 | ||
| pnpm 10.7.0 | ||
| nodejs 24.12.0 | ||
| pnpm 10.28.0 | ||
| rust 1.78.0 | ||
| python 3.12.4 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| /// <reference types="next" /> | ||
benduran marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| /// <reference types="next/image-types/global" /> | ||
| import "./.next/types/routes.d.ts"; | ||
|
|
||
| // NOTE: This file should not be edited | ||
| // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ | |
| "private": true, | ||
| "type": "module", | ||
| "engines": { | ||
| "node": ">=22.14.0" | ||
| "node": "^24.0.0" | ||
| }, | ||
| "scripts": { | ||
| "build:vercel": "next build", | ||
|
|
@@ -63,5 +63,11 @@ | |
| "prettier": "catalog:", | ||
| "tailwindcss": "catalog:", | ||
| "vercel": "catalog:" | ||
| } | ||
| } | ||
| }, | ||
| "browserslist": [ | ||
|
Contributor
Author
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. general good practice to have to be explicit about which browsers we support. this snippet was added to all next.js app package.json files |
||
| "last 1 chrome version", | ||
| "last 1 firefox version", | ||
| "last 1 safari version", | ||
| "not dead" | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| /// <reference types="next" /> | ||
benduran marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| /// <reference types="next/image-types/global" /> | ||
| /// <reference path="./.next/types/routes.d.ts" /> | ||
| import "./.next/types/routes.d.ts"; | ||
|
|
||
| // NOTE: This file should not be edited | ||
| // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ | |
| "private": true, | ||
| "type": "module", | ||
| "engines": { | ||
| "node": ">=22.14.0" | ||
| "node": "^24.0.0" | ||
|
Contributor
Author
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. upgraded all engines to be at least node 24 |
||
| }, | ||
| "scripts": { | ||
| "build": "next build", | ||
|
|
@@ -79,5 +79,11 @@ | |
| "stylelint-config-standard-scss": "catalog:", | ||
| "tailwindcss": "^4.1.6", | ||
| "vercel": "catalog:" | ||
| } | ||
| }, | ||
| "browserslist": [ | ||
| "last 1 chrome version", | ||
| "last 1 firefox version", | ||
| "last 1 safari version", | ||
| "not dead" | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| /// <reference types="next" /> | ||
benduran marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| /// <reference types="next/image-types/global" /> | ||
| /// <reference path="./.next/types/routes.d.ts" /> | ||
| import "./.next/types/routes.d.ts"; | ||
|
|
||
| // NOTE: This file should not be edited | ||
| // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -63,6 +63,6 @@ | |
| "author": "", | ||
| "license": "Apache-2.0", | ||
| "engines": { | ||
| "node": ">=22.14.0" | ||
| "node": "^24.0.0" | ||
| } | ||
| } | ||
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.
updates the
asdfandmiseconfig (@cprussin you might need to update the.nixconfig, as well)