Skip to content

Commit

Permalink
v7 (#407)
Browse files Browse the repository at this point in the history
* v7

* Update release.yml

* Update prerelease.yml

* Update ci.yml

* Update CONTRIBUTING.md

* Update LICENSE

* Update README.md

* Update index.js
  • Loading branch information
tclindner authored Jul 4, 2023
1 parent edf66eb commit b563a64
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '14.x'
node-version: '16'
- run: npm ci --no-progress
- run: npm run lint

Expand All @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
node: [14, 16, 18]
node: [16, 18, 20]
os: [ubuntu-latest, windows-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '14.x'
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- run: npm ci --no-progress --production
- run: npm version --no-push --no-git-tag-version --yes ${{ github.event.release.tag_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '14.x'
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- run: npm ci --no-progress --production
- run: npm version --no-push --no-git-tag-version --yes ${{ github.event.release.tag_name }}
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

### Node

* [Node.js](https://nodejs.org/) - v14.0.0+
* [npm](https://www.npmjs.com/) - v6.0.0+
* [Node.js](https://nodejs.org/) - v16.0.0+
* [npm](https://www.npmjs.com/) - v8.0.0+

## Install project dependencies

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017-2022 tclindner
Copyright (c) 2017-2023 tclindner

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ First thing first, let's make sure you have the necessary pre-requisites.

#### Node

* [Node.js](https://nodejs.org/) - v14.0.0+
* [npm](http://npmjs.com) - v6.0.0+
* [Node.js](https://nodejs.org/) - v16.0.0+
* [npm](http://npmjs.com) - v8.0.0+

### Command

Expand Down Expand Up @@ -62,4 +62,4 @@ Please see [CHANGELOG.md](CHANGELOG.md).

## License

Copyright (c) 2017-2022 Thomas Lindner. Licensed under the MIT license.
Copyright (c) 2017-2023 Thomas Lindner. Licensed under the MIT license.
6 changes: 1 addition & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,9 @@ const config = {
'valid-values-engines': [
'error',
[
{
node: '>=14.0.0',
npm: '>=6.0.0',
},
{
node: '>=16.0.0',
npm: '>=6.0.0',
npm: '>=8.0.0',
},
],
],
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@
"prettier": "^2.8.8"
},
"peerDependencies": {
"npm-package-json-lint": "^6.4.0"
"npm-package-json-lint": "^7.0.0"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"license": "MIT"
}

0 comments on commit b563a64

Please sign in to comment.