Skip to content
This repository was archived by the owner on Oct 2, 2022. It is now read-only.

Commit b300447

Browse files
committed
chore(nodejs): drop support < 10
1 parent 6d0fdb8 commit b300447

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: node_js
22
node_js:
3+
- '14'
4+
- '13'
35
- '12'
46
- '11'
57
- '10'
6-
- '9'
7-
- '8'
88
script: npm install . && npm test

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
3.2.1 / 2020-05-23
2+
=================
3+
* drop support nodejs < v10
4+
15
3.2.0 / 2020-05-23
26
=================
37
* Update dependencies

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "outdatedlog",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "This command will check the registry to see if any (or, specific) installed packages are currently outdated and print the changelog",
55
"main": "lib/outdatedlog",
66
"scripts": {
@@ -31,7 +31,7 @@
3131
"outdatedlog": "./bin/outdatedlog.js"
3232
},
3333
"engines": {
34-
"node": ">= 8.0"
34+
"node": ">= 10.0"
3535
},
3636
"license": "MIT",
3737
"dependencies": {

0 commit comments

Comments
 (0)