Skip to content

Commit

Permalink
Merge pull request #71 from eXist-db/dependabot/npm_and_yarn/standard…
Browse files Browse the repository at this point in the history
…-14.3.1

chore(deps-dev): bump standard from 12.0.1 to 14.3.1
  • Loading branch information
duncdrum authored Oct 28, 2019
2 parents 43d6ad0 + 7023e32 commit 52b3107
Show file tree
Hide file tree
Showing 5 changed files with 855 additions and 447 deletions.
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
language: node_js

node_js:
- "12"
- "10"
- "8"
- "6"

jdk:
- openjdk8

jobs:
include:
# Define the release stage that runs semantic-release
Expand All @@ -31,11 +35,6 @@ env:
- img=existdb/existdb:4.7.1
- img=evolvedbinary/exist-db:eXist-3.6.1-minimal

addons:
apt:
packages:
- oracle-java8-installer

notifications:
email: false

Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ environment:
NODE_VERSION: 8

matrix:
- EXIST_VERSION: 5.0.0-RC1
- EXIST_VERSION: 4.2.1
- EXIST_VERSION: 5.0.0-RC4
- EXIST_VERSION: 4.7.1
- EXIST_VERSION: 3.6.1
- EXIST_VERSION: 2.2

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ function checkForNewerWith (client) {

client.resources.describe(normalizePath(conf.target + '/' + file.relative))
.then(function (resourceInfo) {
const newer = !resourceInfo.hasOwnProperty('modified') || (Date.parse(file.stat.mtime) > Date.parse(resourceInfo.modified))
const newer = !Object.prototype.hasOwnProperty.call(resourceInfo, 'modified') || (Date.parse(file.stat.mtime) > Date.parse(resourceInfo.modified))
callback(null, newer ? file : null)
})
.catch(function (e) {
Expand Down
Loading

0 comments on commit 52b3107

Please sign in to comment.