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

Commit 93f691c

Browse files
committed
chore(travis) remove node 6 & 7
1 parent d8798e5 commit 93f691c

File tree

4 files changed

+57
-57
lines changed

4 files changed

+57
-57
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+
- '12'
4+
- '11'
35
- '10'
46
- '9'
57
- '8'
6-
- '7'
7-
- '6'
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.0.0 / 2019-06-23
2+
=================
3+
* Removed support for nodejs < 8
4+
15
2.0.0 / 2018-10-20
26
=================
37
* Added support for nodejs 10

package-lock.json

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

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "outdatedlog",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
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": {
@@ -29,18 +29,18 @@
2929
"outdatedlog": "./bin/outdatedlog.js"
3030
},
3131
"engines": {
32-
"node": ">= 6.0"
32+
"node": ">= 8.0"
3333
},
3434
"license": "MIT",
3535
"dependencies": {
3636
"async": "~3.1.0",
37-
"chalk": "~2.4.0",
38-
"changelog": "~1.4.1",
37+
"chalk": "~2.4.2",
38+
"changelog": "~1.4.2",
3939
"cli": "~1.0.1",
4040
"npm": "~6.9.0",
4141
"semver-compare": "~1.0.0"
4242
},
4343
"devDependencies": {
44-
"jshint": "~2.10.0"
44+
"jshint": "~2.10.2"
4545
}
4646
}

0 commit comments

Comments
 (0)