Skip to content

Commit

Permalink
Merge pull request #34 from vansergen/dependencies
Browse files Browse the repository at this point in the history
Dependencies
  • Loading branch information
vansergen committed Aug 10, 2020
2 parents fccd5f6 + 442080f commit 9086bbe
Show file tree
Hide file tree
Showing 6 changed files with 1,251 additions and 5,179 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [10, 11, 12, 13]
node-version: [10, 11, 12, 13, 14]
os: [macos-latest, windows-latest, ubuntu-latest]

steps:
Expand Down
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
src/
test/
coverage/
tsconfig.json
index.ts
CODE_OF_CONDUCT.md
.github/
.eslintrc.json
.gitattributes
.nyc_output
.snyk
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class MyClass extends RPC {
const myClass = new MyClass();
myClass
.get()
.then(data => console.log(data))
.catch(error => console.error(error));
.then((data) => console.log(data))
.catch((error) => console.error(error));
```

- [`request`](https://github.com/request/request#requestoptions-callback)
Expand Down
Loading

0 comments on commit 9086bbe

Please sign in to comment.