Skip to content

Commit

Permalink
Merge 038175b into e2ab341
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-koval committed Aug 8, 2019
2 parents e2ab341 + 038175b commit c4b0f4e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"release": {
"branch": "master",
"repositoryUrl": "https://github.com/oleg-koval/trembita",
"dryRun": true,
"debug": true,
"dryRun": false,
"debug": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# trembita-js

[![Build Status](https://travis-ci.com/wearereasonablepeople/trembita.svg?token=H11zxJynPszpg8G3VJzP&branch=master)](https://travis-ci.com/wearereasonablepeople/trembita)
[![Coverage Status](https://coveralls.io/repos/github/wearereasonablepeople/trembita/badge.svg?t=4hXlqB)](https://coveralls.io/github/wearereasonablepeople/trembita)
[![Build Status](https://travis-ci.com/oleg-koval/trembita.svg?branch=master)](https://travis-ci.com/oleg-koval/trembita)
[![Coverage Status](https://coveralls.io/repos/github/oleg-koval/trembita/badge.svg?branch=master)](https://coveralls.io/github/oleg-koval/trembita?branch=master)

> Request wrapper core for consuming third party services
Expand Down Expand Up @@ -43,9 +43,9 @@ In order you can use a third party service by implementing your plugin, make sur
One example of usage would be:

```js
const clientOptions = {
headers: {
header1: 'xxx',
const clientOptions = {
headers: {
header1: 'xxx',
header2: 'yyy'
},
endpoint: 'http://serviceapi.com'
Expand All @@ -54,7 +54,7 @@ const clientOptions = {
const MyAPIClient = class MyAPIClient extends Trembita {
constructor(options) {
super(...arguments);

this.getData = paramsQueryString => {
const params = {
url: `api/path/`,
Expand All @@ -79,4 +79,4 @@ See [the contribute file](CONTRIBUTING.md)!

## License

MIT © 2018 Wearereasonablepeople.com
MIT © 2018

0 comments on commit c4b0f4e

Please sign in to comment.