Skip to content

Commit 186a808

Browse files
authored
v6 (#396)
* Update package.json * Update ci.yml * Update prerelease.yml * Update release.yml * Update CONTRIBUTING.md * Update LICENSE * Update README.md
1 parent 27dfe0d commit 186a808

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
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@v3
1717
- uses: actions/[email protected]
1818
with:
19-
node-version: '14.x'
19+
node-version: '16'
2020
- run: npm ci --no-progress
2121
- run: npm run lint
2222

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

2828
strategy:
2929
matrix:
30-
node: [14, 16, 18]
30+
node: [16, 18, 20]
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@v3
1212
- uses: actions/[email protected]
1313
with:
14-
node-version: '14.x'
14+
node-version: '16'
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@v3
1212
- uses: actions/[email protected]
1313
with:
14-
node-version: '14.x'
14+
node-version: '16'
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/) - v14.0.0+
8-
* [npm](https://www.npmjs.com/) - v6.0.0+
7+
* [Node.js](https://nodejs.org/) - v16.0.0+
8+
* [npm](https://www.npmjs.com/) - v8.0.0+
99

1010
## Install project dependencies
1111

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017-2022 tclindner
3+
Copyright (c) 2017-2023 tclindner
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

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

2323
#### Node
2424

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

2828
### Command
2929

@@ -62,4 +62,4 @@ Please see [CHANGELOG.md](CHANGELOG.md).
6262

6363
## License
6464

65-
Copyright (c) 2017-2022 Thomas Lindner. Licensed under the MIT license.
65+
Copyright (c) 2017-2023 Thomas Lindner. Licensed under the MIT license.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@
4848
"prettier": "^2.8.8"
4949
},
5050
"peerDependencies": {
51-
"npm-package-json-lint": "^6.4.0"
51+
"npm-package-json-lint": "^7.0.0"
5252
},
5353
"engines": {
54-
"node": ">=14.0.0",
55-
"npm": ">=6.0.0"
54+
"node": ">=16.0.0",
55+
"npm": ">=8.0.0"
5656
},
5757
"license": "MIT"
5858
}

0 commit comments

Comments
 (0)