Skip to content

Commit 2af60f3

Browse files
authored
drop node 18. Update peer dep range (#793)
1 parent 9b6499d commit 2af60f3

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
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/[email protected]
1818
with:
19-
node-version: '18'
19+
node-version: '20'
2020
- run: npm ci --no-progress
2121
- run: npm run lint
2222

@@ -27,7 +27,7 @@ jobs:
2727

2828
strategy:
2929
matrix:
30-
node: [18, 20, 22]
30+
node: [20, 22, 24]
3131
os: [ubuntu-latest, windows-latest]
3232

3333
steps:

.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/[email protected]
1313
with:
14-
node-version: '18'
14+
node-version: '20'
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: npm ci --no-progress --production
1717
- run: npm version --no-push --no-git-tag-version --yes ${{ github.event.release.tag_name }}

.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/[email protected]
1313
with:
14-
node-version: '18'
14+
node-version: '20'
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: npm ci --no-progress --production
1717
- run: npm version --no-push --no-git-tag-version --yes ${{ github.event.release.tag_name }}

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/) - v16.0.0+
8-
* [npm](https://www.npmjs.com/) - v8.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ First thing first, let's make sure you have the necessary pre-requisites.
2020

2121
#### Node
2222

23-
* [Node.js](https://nodejs.org/) - v16.0.0+
24-
* [npm](http://npmjs.com) - v8.0.0+
23+
* [Node.js](https://nodejs.org/) - v20.0.0+
24+
* [npm](http://npmjs.com) - v10.0.0+
2525

2626
### Command
2727

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"is-plain-obj": "^3.0.0",
4444
"jest": "^30.0.3",
4545
"npm-package-json-lint": "^8.0.0",
46-
"npm-package-json-lint-config-tc": "^8.0.1",
46+
"npm-package-json-lint-config-tc": "^9.0.0",
4747
"prettier": "^3.6.2"
4848
},
4949
"dependencies": {
@@ -53,14 +53,14 @@
5353
"peerDependencies": {
5454
"eslint": "^8.0.0",
5555
"eslint-plugin-import": "^2.0.0",
56-
"eslint-plugin-jest": "^28.0.0",
56+
"eslint-plugin-jest": "^29.0.0",
5757
"eslint-plugin-prettier": "^5.5.1",
58-
"eslint-plugin-unicorn": ">=37.0.0",
58+
"eslint-plugin-unicorn": ">=56.0.0",
5959
"prettier": "^3.6.2"
6060
},
6161
"engines": {
62-
"node": ">=18.0.0",
63-
"npm": ">=9.0.0"
62+
"node": ">=20.0.0",
63+
"npm": ">=10.0.0"
6464
},
6565
"license": "MIT"
6666
}

0 commit comments

Comments
 (0)