Skip to content

Commit

Permalink
Merge pull request #40 from markowsiak/master
Browse files Browse the repository at this point in the history
Drop Node 6 support, and Babel as a result
  • Loading branch information
jkrems authored Oct 29, 2018
2 parents adb17d0 + fe943d8 commit 9074d85
Show file tree
Hide file tree
Showing 17 changed files with 2,218 additions and 50 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "groupon/node6"
"extends": "groupon/node8"
}
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/yarn.lock
/package-lock.json
/.nyc_output
node_modules/
npm-debug.log
/tmp
Expand Down
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
language: node_js
node_js:
- v6.14.3
- v8.11.3
- v10.5.0
- 8.11.3
- 10.5.0
deploy:
- provider: script
script: ./node_modules/.bin/nlm release
Expand All @@ -11,3 +10,5 @@ deploy:
branch: master
node: 10.5.0
services: memcached
before_install:
- npm i -g npm@^6
1 change: 1 addition & 0 deletions lib/cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ Cache.prototype.end = function end() {
if (this.backend && this.backend.end) {
return this.backend.end();
}
return null;
};

Cache.prototype.prepareOptions = function prepareOptions(options) {
Expand Down
Loading

0 comments on commit 9074d85

Please sign in to comment.