Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-marcacci committed Oct 4, 2020
1 parent db0abee commit 963e69e
Show file tree
Hide file tree
Showing 5 changed files with 2,028 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
@@ -1,9 +1,8 @@
language: node_js
node_js:
- "node"
- "14"
- "12"
- "10"
- "8"
services:
- redis-server
script: npm run test-ci
9 changes: 8 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,4 +6,11 @@

### v4.1.0

- Update scripts for compatibility with LUA 5.2 (via [#63](https://github.com/mike-marcacci/node-redlock/pull/63)).
- Update scripts for compatibility with LUA 5.2 (via [#63](https://github.com/mike-marcacci/node-redlock/pull/63)).

### v4.2.0

- Update dependencies.
- Stop testing on node version 8. (Due to dev dependency requirements only.)
- Update docs (@ricmatsui via [#80](https://github.com/mike-marcacci/node-redlock/pull/80)).
- Use evalsha for scripts (@yosiat via [#77](https://github.com/mike-marcacci/node-redlock/pull/77)).
22 changes: 22 additions & 0 deletions docker-compose.yml
@@ -0,0 +1,22 @@
version: "3.7"

volumes:
node_modules:

services:

# This container builds the server.
redlock:
build:
context: .
target: build
command: yarn build:development
environment:
NODE_ENV: development
volumes:
- type: bind
source: .
target: /build
- type: volume
source: node_modules
target: /build/node_modules

0 comments on commit 963e69e

Please sign in to comment.