fix(bazel): Exclude common/upgrade* in metadata.tsconfig.json (#30133)

It has a dependency on @angular/upgrade which is not part of the
dependencies in package.json, so postinstall would fail.

PR Close #30133
This commit is contained in:
Keen Yee Liau
2019-04-25 16:38:45 -07:00
committed by Andrew Kushnir
parent b9f0720c95
commit 1f4c380f58
4 changed files with 4 additions and 3 deletions

View File

@ -20,6 +20,7 @@
"node_modules/@angular/core/schematics/**",
"node_modules/@angular/compiler-cli/**",
"node_modules/@angular/**/testing/**",
"node_modules/@angular/common/upgrade*",
"node_modules/@angular/router/upgrade*"
]
}