Skip to content

Commit 7e03637

Browse files
authored
Merge pull request #184 from AlvaroDavi5/develop
Develop
2 parents a6b9803 + 0ac4972 commit 7e03637

File tree

22 files changed

+4258
-4568
lines changed

22 files changed

+4258
-4568
lines changed

.github/workflows/build-application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [20.x]
17+
node-version: [24.x]
1818

1919
steps:
2020
- name: Checkout Repository

.github/workflows/releasing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
node-version: [20.x]
22+
node-version: [24.x]
2323

2424
steps:
2525
- name: Checkout Repository
@@ -67,7 +67,7 @@ jobs:
6767

6868
strategy:
6969
matrix:
70-
node-version: [20.x]
70+
node-version: [24.x]
7171

7272
permissions:
7373
contents: write

.github/workflows/sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
strategy:
2323
matrix:
24-
node-version: [20.x]
24+
node-version: [24.x]
2525

2626
steps:
2727
- name: Checkout Repository

.swcrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/swcrc",
33
"jsc": {
4-
"target": "es2020",
4+
"target": "es2024",
55
"parser": {
66
"syntax": "typescript",
77
"decorators": true,

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM node:20.19.2-slim AS build
2+
FROM node:24.2.0-slim AS build
33

44
LABEL name="Node Back-End Boilerplate Image"
55
LABEL description="Docker Image for Node.js Back-End Boilerplate"
@@ -30,7 +30,7 @@ RUN mkdir -p docs temp
3030
RUN chmod +x init.sh
3131
RUN npm run build
3232

33-
FROM node:20.19.2-slim AS prod
33+
FROM node:24.2.0-slim AS prod
3434

3535
ENV CI="true"
3636
ENV NODE_ENV="prod"

eslint.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ const defaultConfigs: Linter.Config = {
2323
'.scannerwork',
2424
],
2525
languageOptions: {
26-
ecmaVersion: 2020,
26+
ecmaVersion: 2024,
2727
sourceType: 'module',
2828
parser: typescriptParser,
2929
globals: {
3030
...globals.node,
31-
...globals.es2020,
31+
...globals.es2024,
3232
...globals.jest,
3333
...globals.browser,
3434
},

infra/docker/Dockerfile.prod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM node:20.19.2-slim AS build
2+
FROM node:24.2.0-slim AS build
33

44
LABEL name="Node Back-End Boilerplate Image"
55
LABEL description="Docker Image for Node.js Back-End Boilerplate"
@@ -30,7 +30,7 @@ RUN mkdir -p docs temp
3030
RUN chmod +x init.sh
3131
RUN npm run build
3232

33-
FROM node:20.19.2-slim AS prod
33+
FROM node:24.2.0-slim AS prod
3434

3535
ENV CI="true"
3636
ENV NODE_ENV="prod"

0 commit comments

Comments
 (0)