Skip to content

Commit

Permalink
fix: ignore http-proxy-agent for webpack (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-fenster committed Nov 22, 2019
1 parent a2a88e3 commit 9a87032
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion templates/typescript_gapic/webpack.config.js.njk
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = {
use: 'null-loader'
},
{
test: /node_modules[\\/]https-proxy-agent/,
test: /node_modules[\\/]https?-proxy-agent/,
use: 'null-loader'
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = {
use: 'null-loader'
},
{
test: /node_modules[\\/]https-proxy-agent/,
test: /node_modules[\\/]https?-proxy-agent/,
use: 'null-loader'
},
{
Expand Down
2 changes: 1 addition & 1 deletion typescript/test/testdata/redis/webpack.config.js.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = {
use: 'null-loader'
},
{
test: /node_modules[\\/]https-proxy-agent/,
test: /node_modules[\\/]https?-proxy-agent/,
use: 'null-loader'
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = {
use: 'null-loader'
},
{
test: /node_modules[\\/]https-proxy-agent/,
test: /node_modules[\\/]https?-proxy-agent/,
use: 'null-loader'
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = {
use: 'null-loader'
},
{
test: /node_modules[\\/]https-proxy-agent/,
test: /node_modules[\\/]https?-proxy-agent/,
use: 'null-loader'
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = {
use: 'null-loader'
},
{
test: /node_modules[\\/]https-proxy-agent/,
test: /node_modules[\\/]https?-proxy-agent/,
use: 'null-loader'
},
{
Expand Down

0 comments on commit 9a87032

Please sign in to comment.