Skip to content

chore(deps): update node.js to v22 #53

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"pnpm": {
"overrides": {
"@types/node": "^20.0.0"
"@types/node": "^22.0.0"
}
},
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-adapter-react-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"devDependencies": {
"@aws-amplify/core": "^6.10.5",
"@types/node": "^20.19.0",
"@types/node": "^22.0.0",
"typescript": "^5.7.3",
"vite": "^6.3.0",
"vite-plugin-dts": "^4.5.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"devDependencies": {
"@react-router/dev": "^7.5.2",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^20",
"@types/node": "^22.0.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"react-router-devtools": "^5.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"devDependencies": {
"@react-router/dev": "^7.5.2",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^20",
"@types/node": "^22.0.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"react-router-devtools": "^5.0.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
FROM node:20-alpine AS development-dependencies-env
FROM node:22-alpine AS development-dependencies-env
COPY . /app
WORKDIR /app
RUN npm ci

FROM node:20-alpine AS production-dependencies-env
FROM node:22-alpine AS production-dependencies-env
COPY ./package.json package-lock.json /app/
WORKDIR /app
RUN npm ci --omit=dev

FROM node:20-alpine AS build-env
FROM node:22-alpine AS build-env
COPY . /app/
COPY --from=development-dependencies-env /app/node_modules /app/node_modules
WORKDIR /app
RUN npm run build

FROM node:20-alpine
FROM node:22-alpine
COPY ./package.json package-lock.json /app/
COPY --from=production-dependencies-env /app/node_modules /app/node_modules
COPY --from=build-env /app/build /app/build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"devDependencies": {
"@react-router/dev": "^7.6.3",
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^20",
"@types/node": "^22.0.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"tailwindcss": "^4.1.11",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"build": "tsc && vite build"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@types/node": "^22.0.0",
"dedent": "^1.5.3",
"strip-indent": "^4.0.0",
"typescript": "^5.7.3",
Expand Down
423 changes: 152 additions & 271 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading