Skip to content

Commit

Permalink
fix: remove extra backslash from regex (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-fenster committed Nov 19, 2019
1 parent f0509eb commit 973af3e
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
10 changes: 5 additions & 5 deletions templates/typescript_gapic/webpack.config.js.njk
Expand Up @@ -39,23 +39,23 @@ module.exports = {
exclude: /node_modules/
},
{
test: /node_modules[\\\/]@grpc[\\\/]grpc-js/,
test: /node_modules[\\/]@grpc[\\/]grpc-js/,
use: 'null-loader'
},
{
test: /node_modules[\\\/]grpc/,
test: /node_modules[\\/]grpc/,
use: 'null-loader'
},
{
test: /node_modules[\\\/]retry-request/,
test: /node_modules[\\/]retry-request/,
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'
},
],
Expand Down
10 changes: 5 additions & 5 deletions typescript/test/testdata/keymanager/webpack.config.js.baseline
Expand Up @@ -39,23 +39,23 @@ module.exports = {
exclude: /node_modules/
},
{
test: /node_modules[\\\/]@grpc[\\\/]grpc-js/,
test: /node_modules[\\/]@grpc[\\/]grpc-js/,
use: 'null-loader'
},
{
test: /node_modules[\\\/]grpc/,
test: /node_modules[\\/]grpc/,
use: 'null-loader'
},
{
test: /node_modules[\\\/]retry-request/,
test: /node_modules[\\/]retry-request/,
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'
},
],
Expand Down
10 changes: 5 additions & 5 deletions typescript/test/testdata/showcase/webpack.config.js.baseline
Expand Up @@ -39,23 +39,23 @@ module.exports = {
exclude: /node_modules/
},
{
test: /node_modules[\\\/]@grpc[\\\/]grpc-js/,
test: /node_modules[\\/]@grpc[\\/]grpc-js/,
use: 'null-loader'
},
{
test: /node_modules[\\\/]grpc/,
test: /node_modules[\\/]grpc/,
use: 'null-loader'
},
{
test: /node_modules[\\\/]retry-request/,
test: /node_modules[\\/]retry-request/,
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'
},
],
Expand Down
10 changes: 5 additions & 5 deletions typescript/test/testdata/texttospeech/webpack.config.js.baseline
Expand Up @@ -39,23 +39,23 @@ module.exports = {
exclude: /node_modules/
},
{
test: /node_modules[\\\/]@grpc[\\\/]grpc-js/,
test: /node_modules[\\/]@grpc[\\/]grpc-js/,
use: 'null-loader'
},
{
test: /node_modules[\\\/]grpc/,
test: /node_modules[\\/]grpc/,
use: 'null-loader'
},
{
test: /node_modules[\\\/]retry-request/,
test: /node_modules[\\/]retry-request/,
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'
},
],
Expand Down
10 changes: 5 additions & 5 deletions typescript/test/testdata/translate/webpack.config.js.baseline
Expand Up @@ -39,23 +39,23 @@ module.exports = {
exclude: /node_modules/
},
{
test: /node_modules[\\\/]@grpc[\\\/]grpc-js/,
test: /node_modules[\\/]@grpc[\\/]grpc-js/,
use: 'null-loader'
},
{
test: /node_modules[\\\/]grpc/,
test: /node_modules[\\/]grpc/,
use: 'null-loader'
},
{
test: /node_modules[\\\/]retry-request/,
test: /node_modules[\\/]retry-request/,
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'
},
],
Expand Down

0 comments on commit 973af3e

Please sign in to comment.