Skip to content

Commit 6fdbf0b

Browse files
authored
Drop support for node 12 (#309)
* Drop node 12 support * Bump dep
1 parent e07f69e commit 6fdbf0b

File tree

7 files changed

+16
-116
lines changed

7 files changed

+16
-116
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 }}

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### Node
66

7-
* [Node.js](https://nodejs.org/) - v12.0.0+
7+
* [Node.js](https://nodejs.org/) - v14.0.0+
88
* [npm](https://www.npmjs.com/) - v6.0.0+
99

1010
## Install project dependencies

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: 7 additions & 107 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
@@ -43,13 +43,13 @@
4343
"eslint-formatter-pretty": "^4.1.0",
4444
"eslint-plugin-eslint-comments": "^3.2.0",
4545
"eslint-plugin-import": "^2.25.4",
46-
"eslint-plugin-jest": "^25.7.0",
46+
"eslint-plugin-jest": "^26.1.1",
4747
"eslint-plugin-prettier": "^4.0.0",
4848
"eslint-plugin-unicorn": "^41.0.0",
4949
"is-plain-obj": "^3.0.0",
5050
"jest": "^27.5.1",
5151
"npm-package-json-lint": "^5.4.2",
52-
"npm-package-json-lint-config-tc": "^4.1.0",
52+
"npm-package-json-lint-config-tc": "^5.0.0",
5353
"prettier": "^2.5.1",
5454
"typescript": "^4.6.2"
5555
},
@@ -62,7 +62,7 @@
6262
"eslint": "^8.0.0"
6363
},
6464
"engines": {
65-
"node": ">=12.0.0",
65+
"node": ">=14.0.0",
6666
"npm": ">=6.0.0"
6767
},
6868
"license": "MIT"

0 commit comments

Comments
 (0)