Skip to content

Commit

Permalink
Merge branch 'master' of github.com:CartoDB/node-redis-mpool
Browse files Browse the repository at this point in the history
  • Loading branch information
dgaubert committed May 13, 2020
2 parents 8d99c0c + ba8344f commit 1bd817f
Show file tree
Hide file tree
Showing 11 changed files with 2,632 additions and 594 deletions.
22 changes: 22 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
env: {
commonjs: true,
es6: true,
node: true,
mocha: true
},
extends: [
'standard'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018
},
rules: {
indent: ["error", 4],
semi: ["error", "always"]
}
};
12 changes: 2 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
language: node_js
sudo: false
env:
- CXX=g++-4.9
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9

services: redis-server
node_js:
- "6"
- "8"
- "10"
- "12"
14 changes: 0 additions & 14 deletions Makefile

This file was deleted.

17 changes: 16 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# 0.7.1 (2018-mm-dd)
# 0.8.0 (2020-mm-dd)

### Breaking changes
- Use promises

### Changed
- ES2020 style
- removing hiredis and using node-redis
- removing makefile and use npm scripts
- removing underscore
- removing dot
- updating dependencies versions

### Added
- adding eslint (standard)

# 0.7.0 (2018-11-21)

- Add package-lock.json

# 0.6.0 (2018-10-25)
Expand Down
Loading

0 comments on commit 1bd817f

Please sign in to comment.