Skip to content

Commit d5f30be

Browse files
authored
Drop support for node 12 (#443)
* Drop support for node 12 * Bump dep
1 parent 2a3abbc commit d5f30be

File tree

6 files changed

+41
-50
lines changed

6 files changed

+41
-50
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: '12.x'
19+
node-version: '14.x'
2020
- run: npm ci --no-progress
2121
- run: npm run lint
2222

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

2828
strategy:
2929
matrix:
30-
node: [12, 14]
30+
node: [14, 16]
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: '12.x'
14+
node-version: '14.x'
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: '12.x'
14+
node-version: '14.x'
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 }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ First thing first, let's make sure you have the necessary pre-requisites.
2020

2121
#### Node
2222

23-
* [Node.js](https://nodejs.org/) - v12.0.0+
23+
* [Node.js](https://nodejs.org/) - v14.0.0+
2424
* [npm](http://npmjs.com) - v6.0.0+
2525

2626
### Command

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
3838
"eslint": "^8.10.0",
3939
"eslint-formatter-pretty": "^4.1.0",
4040
"eslint-plugin-import": "^2.25.4",
41-
"eslint-plugin-jest": "^25.7.0",
41+
"eslint-plugin-jest": "^26.1.1",
4242
"eslint-plugin-prettier": "^4.0.0",
4343
"eslint-plugin-unicorn": "^41.0.0",
4444
"is-plain-obj": "^3.0.0",
4545
"jest": "^27.5.1",
4646
"npm-package-json-lint": "^5.4.2",
47-
"npm-package-json-lint-config-tc": "^4.1.0",
47+
"npm-package-json-lint-config-tc": "^5.0.0",
4848
"prettier": "^2.5.1"
4949
},
5050
"dependencies": {
@@ -60,7 +60,7 @@
6060
"prettier": "^2.0.0"
6161
},
6262
"engines": {
63-
"node": ">=12.0.0",
63+
"node": ">=14.0.0",
6464
"npm": ">=6.0.0"
6565
},
6666
"license": "MIT"

0 commit comments

Comments
 (0)