Skip to content

Commit

Permalink
Updated dependencies;
Browse files Browse the repository at this point in the history
Updated CHANGELOG.md;
  • Loading branch information
DigitalBrainJS committed Dec 7, 2020
1 parent ba756be commit fad684f
Show file tree
Hide file tree
Showing 5 changed files with 326 additions and 671 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

For changes before version 0.1.6, please see the commit history

## [0.1.8] - 2020-12-07

### Updated
- dependencies

## [0.1.7] - 2020-10-15

### Updated
- dependencies

## [0.1.6] - 2020-10-15

### Updated
Expand Down
4 changes: 2 additions & 2 deletions lib/core/CPAxios.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const axios = require('axios');
const CPromise = require('c-promise2');
const {CPromise} = require('c-promise2');
const {Axios} = axios;

const isThenable = (thing) => thing && typeof thing.then === 'function';
Expand Down Expand Up @@ -44,7 +44,7 @@ class CPAxios extends Axios {
}),
}).then(resolve, reject);
})
}, {signal});
}, {signal, nativeController: true});

return promise;
}
Expand Down
Loading

0 comments on commit fad684f

Please sign in to comment.