Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit f4ba4c9

Browse files
author
Mark Owsiak
committed
chore: drop support for node 6, keep async/await in test
BREAKING CHANGE: drops support for Node 6, which is a current LTS release.
1 parent 2339fd1 commit f4ba4c9

File tree

6 files changed

+2175
-11
lines changed

6 files changed

+2175
-11
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
/yarn.lock
2-
/package-lock.json
1+
/.nyc_output
32
node_modules/
43
npm-debug.log
54
/tmp

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: node_js
22
node_js:
3-
- v6.14.3
4-
- v8.11.3
5-
- v10.5.0
3+
- 8.11.3
4+
- 10.5.0
65
deploy:
76
- provider: script
87
script: ./node_modules/.bin/nlm release

lib/cache.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ Cache.prototype.end = function end() {
7676
if (this.backend && this.backend.end) {
7777
return this.backend.end();
7878
}
79+
return null;
7980
};
8081

8182
Cache.prototype.prepareOptions = function prepareOptions(options) {

0 commit comments

Comments
 (0)