Skip to content

Commit

Permalink
Merge pull request #587 from Reterics/develop/package-upgrade
Browse files Browse the repository at this point in the history
Upgrade Node.js from v18.19 to LTS v20.18 #586
  • Loading branch information
ccamel authored Oct 25, 2024
2 parents bb92735 + e60020d commit ec29cea
Show file tree
Hide file tree
Showing 7 changed files with 2,825 additions and 2,912 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup node environment (for building)
uses: actions/setup-node@v4
with:
node-version: 18.19
node-version: 20.18

- name: Fetch dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/capture-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Setup node environment
uses: actions/setup-node@v4
with:
node-version: 18.12
node-version: 20.18
# don't use cache as it may interfere with other jobs
# cache: npm

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Setup node environment (for building)
uses: actions/setup-node@v4
with:
node-version: 18.19
node-version: 20.18
cache: yarn

- name: Fetch dependencies
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
- name: Setup node environment (for building)
uses: actions/setup-node@v4
with:
node-version: 18.19
node-version: 20.18
cache: yarn

- name: Fetch dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-versioned-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Setup node environment
uses: actions/setup-node@v4
with:
node-version: 18.19
node-version: 20.18
cache: yarn

- name: Bump new version
Expand Down
15 changes: 14 additions & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
module.exports = {
...require('@okp4/eslint-config/.prettierrc.js'),
printWidth: 100,
tabWidth: 2,
semi: false,
singleQuote: true,
trailingComma: 'none',
bracketSpacing: true,
jsxBracketSameLine: false,
arrowParens: 'avoid',
proseWrap: 'preserve',
jsxSingleQuote: false,
useTabs: false,
htmlWhitespaceSensitivity: 'css',
endOfLine: 'auto',
quoteProps: 'as-needed',
overrides: [
{
files: ['**/*.scss'],
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"web": "https://axone.xyz"
},
"engines": {
"node": "^18.0",
"node": "^20.18",
"yarn": "~1.22.17"
},
"scripts": {
Expand Down Expand Up @@ -64,7 +64,6 @@
"@docusaurus/module-type-aliases": "^3.5.2",
"@docusaurus/types": "^3.5.2",
"@nivo/line": "^0.87.0",
"@okp4/eslint-config": "^2.0.0",
"docusaurus-plugin-drawio": "^0.4.0",
"graphviz-react": "^1.2.5",
"markdownlint-cli": "^0.41.0",
Expand Down
Loading

0 comments on commit ec29cea

Please sign in to comment.