Skip to content

Commit

Permalink
fix(deps): update dev dependencies (#17)
Browse files Browse the repository at this point in the history
* deps: update

* deps: npm audit

* fix(deps): npm audit fix --force

* fix(semantic-release): use new semantic release command

* fix(deps): make sure we still produce declarations

* fixdeps): move typescript back to dev dependencies

* docs(package): add keyword, mostly just to trigger another build

* fix(docs): unweird english

* fix(vscode): use compile rather than build

* temporarily un-cache node_modules

* it worked - try un-caching again

* broke again, try a thing from stack overflow
  • Loading branch information
mmkal committed Sep 7, 2018
1 parent 02318b9 commit c4245d3
Show file tree
Hide file tree
Showing 5 changed files with 8,611 additions and 3,563 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ language: node_js
services: docker
cache:
directories:
- node_modules
- $HOME/.npm
notifications:
email: true
node_js:
- '8'
- '6'
- '10'
before_script:
- npm prune
- npm run redis:up -- -d && sleep 10
after_success:
- npm run semantic-release
- npm run release
- npm run coverage
branches:
except:
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"args": ["run"],
"tasks": [
{
"taskName": "build",
"taskName": "compile",
"problemMatcher": "$tsc-watch",
"showOutput": "always",
"args": ["--", "--sourceMap", "--watch"],
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ See the [snapshot tests](https://github.com/mmkal/handy-redis/blob/master/test/g

### Multi

Most members of node_redis's `multi` type don't need to be promisified, because they execute synchronously. Only `exec` is async. To use a promisified version of that, use `execMulti`:
Most members of node_redis's `multi` type don't need to be promisified, because they execute synchronously. Only `exec` is async. For a promisified version of that, use `execMulti`:

```JavaScript
import { createHandyClient } from 'handy-redis';
Expand Down

0 comments on commit c4245d3

Please sign in to comment.