Skip to content

Commit

Permalink
fix(deps): gaxios (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
elierotenberg authored Sep 30, 2020
1 parent 3219c11 commit 5a15848
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"license": "Apache-2.0",
"dependencies": {
"extend": "^3.0.2",
"gaxios": "^3.0.0",
"gaxios": "^3.2.0",
"google-auth-library": "^6.0.0",
"qs": "^6.7.0",
"url-template": "^2.0.8",
Expand Down
14 changes: 8 additions & 6 deletions system-test/fixtures/kitchen/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,30 +28,32 @@ module.exports = {
},
node: {
child_process: 'empty',
fs: 'empty',
crypto: 'empty',
fs: 'empty',
http2: 'empty',
net: 'empty',
tls: 'empty',
},
module: {
rules: [
{
test: /src\/http2/,
test: /src(\/|\\)http2/,
use: 'null-loader',
},
{
test: /node_modules\/https-proxy-agent\//,
test: /node_modules(\/|\\)https-proxy-agent(\/|\\)/,
use: 'null-loader',
},
{
test: /node_modules\/gtoken\//,
test: /node_modules(\/|\\)gtoken(\/|\\)/,
use: 'null-loader',
},
{
test: /node_modules\/pkginfo\//,
test: /node_modules(\/|\\)pkginfo(\/|\\)/,
use: 'null-loader',
},
{
test: /node_modules\/semver\//,
test: /node_modules(\/|\\)semver(\/|\\)/,
use: 'null-loader',
},
{
Expand Down

0 comments on commit 5a15848

Please sign in to comment.