Skip to content

Commit

Permalink
Allow webpack users to overwrite buildins (#4715)
Browse files Browse the repository at this point in the history
Co-authored-by: Jay <jasonsaayman@gmail.com>
  • Loading branch information
KyorCode and jasonsaayman committed May 16, 2022
1 parent c05ad48 commit 9be61dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/adapters/http.js
Expand Up @@ -7,8 +7,8 @@ var buildURL = require('./../helpers/buildURL');
var getProxyForUrl = require('proxy-from-env').getProxyForUrl;
var http = require('http');
var https = require('https');
var httpFollow = require('follow-redirects').http;
var httpsFollow = require('follow-redirects').https;
var httpFollow = require('follow-redirects/http');
var httpsFollow = require('follow-redirects/https');
var url = require('url');
var zlib = require('zlib');
var VERSION = require('./../env/data').version;
Expand Down

0 comments on commit 9be61dc

Please sign in to comment.