Skip to content

Commit

Permalink
build: update node.js version to 20.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayllyz committed Aug 3, 2024
1 parent 7f0a61d commit 2e05d03
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.9.0
20.16.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.9.0-alpine3.17 as build
FROM node:20.16.0-alpine3.20 as build

COPY package*.json /

Expand All @@ -8,7 +8,7 @@ COPY . .

RUN npm run build

FROM node:20.9.0-alpine3.17
FROM node:20.16.0-alpine3.20

RUN apk --no-cache add git

Expand Down
2 changes: 1 addition & 1 deletion babel.config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"presets": [["@babel/preset-env"]],
"targets": {
"node": "20.9.0"
"node": "20.16.0"
}
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"build": "rollup -c"
},
"engines": {
"node": "20.9.0"
"node": "20.16.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 2e05d03

Please sign in to comment.