Skip to content

Commit

Permalink
Merge pull request #264 from iodigital-com/feature/node-20
Browse files Browse the repository at this point in the history
feat(node): update to node 20
  • Loading branch information
DaveBitter authored Aug 30, 2024
2 parents 8dbb255 + edd234f commit c4cf4b9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
steps:
- name: Checkout current repository to Master branch
uses: actions/checkout@v2
- name: Setup NodeJs 16.x
- name: Setup NodeJs 20.x
uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '20.x'
- name: Cache dependencies and build outputs to improve workflow execution time.
uses: actions/cache@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.*
20.*
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ module.exports = withBundleAnalyzer({
},
]
},
webpack: (config, { dev, isServer }) => {
webpack: (config) => {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"prepare": "husky install"
},
"engines": {
"node": "~16",
"npm": "~8"
"node": "~20",
"npm": "~10"
},
"dependencies": {
"@fontsource/inter": "4.5.2",
Expand Down

0 comments on commit c4cf4b9

Please sign in to comment.