Skip to content

Commit

Permalink
Deno test
Browse files Browse the repository at this point in the history
  • Loading branch information
01101sam authored Jul 26, 2022
1 parent 6e8018d commit 9abfe6b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@sam01101/node-proxy-agent",
"version": "5.1.3",
"name": "proxy_agent",
"version": "5.1.4",
"description": "An HTTP(s) and SOCKS proxy `http.Agent` implementation for HTTPS and SOCKS",
"main": "dist/index",
"types": "dist/index",
"main": "src/mod.ts",
"types": "src/mod.ts",
"files": [
"dist"
],
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts → src/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import dns from 'dns';
import {OutgoingHttpHeaders} from 'http';
import {Agent, AgentOptions, ClientRequest, RequestOptions} from 'agent-base';
import {SocksClient, SocksClientOptions, SocksProxy} from 'socks';
import parseProxyResponse from './parse-proxy-response';
import parseProxyResponse from './parse-proxy-response.ts';
import createDebug from 'debug';

const debug = createDebug('node-proxy-agent:agent');
const debug = createDebug('deno-proxy-agent:agent');


interface BaseSocksProxyAgentOptions {
Expand Down

0 comments on commit 9abfe6b

Please sign in to comment.