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

Commit 9074d85

Browse files
authored
Merge pull request #40 from markowsiak/master
Drop Node 6 support, and Babel as a result
2 parents adb17d0 + fe943d8 commit 9074d85

17 files changed

+2218
-50
lines changed

.babelrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"extends": "groupon/node6"
2+
"extends": "groupon/node8"
33
}

.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: 4 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
@@ -11,3 +10,5 @@ deploy:
1110
branch: master
1211
node: 10.5.0
1312
services: memcached
13+
before_install:
14+
- npm i -g npm@^6

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)