Skip to content

Commit

Permalink
Replaced axios-https-proxy to use just axios (#30)
Browse files Browse the repository at this point in the history
* Replaced axios-https-proxy to use just axios

* Updated package semver version
  • Loading branch information
LmKupke authored and circa10a committed Oct 19, 2019
1 parent ecd9d17 commit 4592250
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 76 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 3.2.0 (2019-10-19)

## Fixed

- [#29] (https://github.com/circa10a/easy-soap-request/issues/29)

# 3.1.0(2019-10-09)

## Added
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const axios = require('axios-https-proxy-fix');
const axios = require('axios').default;

/**
* @author Caleb Lemoine
Expand Down
87 changes: 15 additions & 72 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "easy-soap-request",
"version": "3.1.0",
"version": "3.2.0",
"description": "A small library to make SOAP requests easier",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -33,8 +33,7 @@
},
"homepage": "https://github.com/circa10a/easy-soap-request#readme",
"dependencies": {
"axios": "^0.19.0",
"axios-https-proxy-fix": "^0.17.1"
"axios": "^0.19.0"
},
"devDependencies": {
"chai": "^4.2.0",
Expand Down

0 comments on commit 4592250

Please sign in to comment.