Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
fix(): Add node 12 and 14 support
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-martin committed Jul 8, 2020
1 parent c230d02 commit 4cc1df0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
v14
8 changes: 3 additions & 5 deletions .travis.yml
Expand Up @@ -8,8 +8,6 @@ after_script:

language: node_js
node_js:
- "4"
- "5"
- "6"
- "8"
- "10"
- "10"
- "12"
- "14"
4 changes: 2 additions & 2 deletions lib/logging/appenders/rollingFileAppender.js
Expand Up @@ -180,7 +180,7 @@ FileAppender.extend({
files = files.sort(function (a, b) {
var ret = 0;
if (a > b) {
ret = 0;
ret = -1;
} else if (a < b) {
ret = 1;
}
Expand Down Expand Up @@ -227,4 +227,4 @@ FileAppender.extend({
}
}
}
}).registerType("RollingFileAppender").as(module);
}).registerType("RollingFileAppender").as(module);

0 comments on commit 4cc1df0

Please sign in to comment.