Skip to content

Commit 8fe3614

Browse files
committed
- version bump 🎯
1 parent 01868a5 commit 8fe3614

10 files changed

Lines changed: 1487 additions & 11774 deletions

File tree

‎.docker/docker-compose.commands.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2'
22
services:
33
base:
4-
image: node:17
4+
image: node:18
55
volumes:
66
- nodemodules:/usr/src/service/node_modules
77
- ./../:/usr/src/service/

‎.docker/dockerfile.deployment‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:17 as webbuild
1+
FROM node:18 as webbuild
22

33
### STAGE - WEBBUILD ###
44

‎.github/workflows/nodejs_build.yml‎

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

1212
strategy:
1313
matrix:
14-
node-version: [17.x]
14+
node-version: [18.x]
1515

1616
steps:
1717
- uses: actions/checkout@v2

‎.github/workflows/nodejs_lint.yml‎

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

99
strategy:
1010
matrix:
11-
node-version: [17.x]
11+
node-version: [18.x]
1212

1313
steps:
1414
- uses: actions/checkout@v2

‎.github/workflows/nodejs_test.yml‎

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

99
strategy:
1010
matrix:
11-
node-version: [17.x]
11+
node-version: [18.x]
1212

1313
steps:
1414
- uses: actions/checkout@v2

‎.templates/project/template.project.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"general": {
3-
"node_version": 17
3+
"node_version": 18
44
},
55
"local": {
66
"port": 8080

‎LICENSE‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License (MIT)
22

3-
Copyright (c) 2022 Benjamin Brachmann
3+
Copyright (c) 2023 Benjamin Brachmann
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

‎README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This project is a docker based starter repository aiming for enterprise solution
1212

1313
### Included Technologies/Libraries
1414

15-
- Node _LTS/17_
15+
- Node _LTS/18_
1616
- React _18_
1717
- Webpack _4_
1818
- Redux
@@ -52,7 +52,7 @@ make setup
5252

5353
### Installing dependencies
5454

55-
> Note: The dependencies in the node_modules directory are not the same as those used by the Docker environment. The reason they need to be installed outside of docker is the **VSCode extension ESlint**, which expects a local version of **ESlint**. This repository uses node 17.
55+
> Note: The dependencies in the node_modules directory are not the same as those used by the Docker environment. The reason they need to be installed outside of docker is the **VSCode extension ESlint**, which expects a local version of **ESlint**. This repository uses node 18.
5656
5757
```zsh
5858
make install

0 commit comments

Comments
 (0)