Skip to content

Commit

Permalink
chore(release): set package.json to 1.0.2 [skip ci]
Browse files Browse the repository at this point in the history
## [1.0.2](v1.0.1...v1.0.2) (2021-09-30)

### Bug Fixes

* handle empty string for PROXY_HOST and PROXY_PORT ([#4](#4)) ([cce2462](cce2462))
  • Loading branch information
semantic-release-bot committed Sep 30, 2021
1 parent cce2462 commit 8c146a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.0.2](https://github.com/Safe-Security/praxios/compare/v1.0.1...v1.0.2) (2021-09-30)


### Bug Fixes

* handle empty string for PROXY_HOST and PROXY_PORT ([#4](https://github.com/Safe-Security/praxios/issues/4)) ([cce2462](https://github.com/Safe-Security/praxios/commit/cce2462cc9fa0478734411410948ea6c6d1a6477))

## [1.0.1](https://github.com/Safe-Security/praxios/compare/v1.0.0...v1.0.1) (2021-09-30)


Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var tunnel = require("tunnel");
exports.tunnel = tunnel;
var _a = process.env, PROXY_HOST = _a.PROXY_HOST, PROXY_PORT = _a.PROXY_PORT, PROXY_USERNAME = _a.PROXY_USERNAME, PROXY_PASSWORD = _a.PROXY_PASSWORD;
var isProxyDefined = function () {
return PROXY_HOST !== undefined && PROXY_PORT !== undefined;
return !!PROXY_HOST && !!PROXY_PORT;
};
var getProxyAuth = function () {
if (PROXY_USERNAME && PROXY_PASSWORD) {
Expand Down

0 comments on commit 8c146a0

Please sign in to comment.