Skip to content

Commit 13f3c84

Browse files
authored
Drop node18 (#1546)
1 parent bce0c15 commit 13f3c84

File tree

10 files changed

+2459
-1587
lines changed

10 files changed

+2459
-1587
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: '18'
19+
node-version: '20'
2020
- run: npm ci --no-progress
2121
- run: npm run build
2222
- run: npm run lint
@@ -28,7 +28,7 @@ jobs:
2828

2929
strategy:
3030
matrix:
31-
node: [18, 20, 22]
31+
node: [20, 22, 24]
3232
# TODO: Add windows-latest
3333
os: [ubuntu-latest, macos-latest]
3434

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-node@v4
1313
with:
14-
node-version: '18'
14+
node-version: '20'
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: npm ci --no-progress
1717
- run: npm run build

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-node@v4
1313
with:
14-
node-version: '18'
14+
node-version: '20'
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: npm ci --no-progress
1717
- run: npm run build

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
### Node
66

7-
* [Node.js](https://nodejs.org/) - v18.0.0+
8-
* [npm](https://www.npmjs.com/) - v9.0.0+
7+
* [Node.js](https://nodejs.org/) - v20.0.0+
8+
* [npm](https://www.npmjs.com/) - v10.0.0+
99

1010
## Install project dependencies
1111

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ First thing first, let's make sure you have the necessary pre-requisites.
6262

6363
#### Node
6464

65-
* [Node.js](https://nodejs.org/) - v18.0.0+
66-
* [npm](http://npmjs.com) - v9.0.0+
65+
* [Node.js](https://nodejs.org/) - v20.0.0+
66+
* [npm](http://npmjs.com) - v10.0.0+
6767

6868
### Use the cli
6969

@@ -117,6 +117,14 @@ Quick links
117117

118118
[CLI commands and configuration](https://npmpackagejsonlint.org/docs/cli) | [Node.js API](https://npmpackagejsonlint.org/docs/api) | [Integrations](https://npmpackagejsonlint.org/docs/integrations)
119119

120+
## Migrating from v8.x.x to 9.x.x
121+
122+
Please see the [migration guide](https://npmpackagejsonlint.org/docs/v8-to-v9).
123+
124+
## Migrating from v7.x.x to 8.x.x
125+
126+
Please see the [migration guide](https://npmpackagejsonlint.org/docs/v7-to-v8).
127+
120128
## Migrating from v6.x.x to 7.x.x
121129

122130
Please see the [migration guide](https://npmpackagejsonlint.org/docs/v6-to-v7).

0 commit comments

Comments
 (0)