Skip to content

Commit 72e8a12

Browse files
authored
build(nodejs)!: remove 20 support (#353)
1 parent bd1ba74 commit 72e8a12

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/commit_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: read
1212
strategy:
1313
matrix:
14-
node-version: [22.x]
14+
node-version: [24.x]
1515
steps:
1616
- uses: actions/checkout@v6
1717
with:

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
matrix:
3131
# Coverage node version
32-
node-version: [22.x]
32+
node-version: [24.x]
3333
steps:
3434
- uses: actions/checkout@v6
3535
- uses: actions/configure-pages@v5

.github/workflows/documentation_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: read
1212
strategy:
1313
matrix:
14-
node-version: [22.x]
14+
node-version: [24.x]
1515
steps:
1616
- uses: actions/checkout@v6
1717
- name: Setup Node.js ${{ matrix.node-version }}

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: read
1212
strategy:
1313
matrix:
14-
node-version: [20.x, 22.x, 24.x]
14+
node-version: [22.x, 24.x]
1515
steps:
1616
- uses: actions/checkout@v6
1717
- name: Setup Node.js ${{ matrix.node-version }}

.github/workflows/packages_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: read
1212
strategy:
1313
matrix:
14-
node-version: [22.x]
14+
node-version: [24.x]
1515
steps:
1616
- uses: actions/checkout@v6
1717
- name: Setup Node.js ${{ matrix.node-version }}

DOCS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<summary><h3 style="display: inline-block">Tooling requirements</h3></summary>
55

66
The basic use requirements:
7-
* [NodeJS version 20+](https://nodejs.org/)
7+
* [NodeJS version 22+](https://nodejs.org/)
88
* NPM
99
> There appear to be dependency mapping issues with `Yarn` v1.x.x lock files, `Typescript` and `webpack`, and specific dependencies
1010
> using ES modules. If you do decide to use [Yarn](https://yarnpkg.com) use the latest version.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The goal of `weldable` is to make it easier to install `webpack` build packages
2020

2121
## Requirements
2222
The basic requirements:
23-
* [NodeJS version 20+](https://nodejs.org/)
23+
* [NodeJS version 22+](https://nodejs.org/)
2424
* NPM
2525
> There appear to be dependency mapping issues with `Yarn` v1.x.x lock files, `Typescript` and `webpack`, and specific dependencies
2626
> using ES modules. If you do decide to use [Yarn](https://yarnpkg.com) use the latest version.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"webpack"
1919
],
2020
"engines": {
21-
"node": ">=20.0.0"
21+
"node": ">=22.0.0"
2222
},
2323
"files": [
2424
"lib/",

0 commit comments

Comments
 (0)