Skip to content

Commit

Permalink
Merge pull request #15 from CartoDB/promisify
Browse files Browse the repository at this point in the history
Promisify
  • Loading branch information
dgaubert authored May 13, 2020
2 parents 181e8fe + 5551826 commit ba8344f
Show file tree
Hide file tree
Showing 11 changed files with 2,633 additions and 593 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: 17 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
# 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 ba8344f

Please sign in to comment.