Skip to content

Commit 1db8bf3

Browse files
kyliaumatsko
authored andcommittedMar 15, 2019
fix(bazel): Remove @angular/upgrade from dev dependencies (#29319)
@angular/upgrade is unnecessary, but it's required by router/upgrade. PR Close #29319
1 parent f7738ad commit 1db8bf3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎packages/bazel/src/schematics/ng-add/files/angular-metadata.tsconfig.json.template

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"exclude": [
1717
"node_modules/@angular/bazel/**",
1818
"node_modules/@angular/compiler-cli/**",
19-
"node_modules/@angular/**/testing/**"
19+
"node_modules/@angular/**/testing/**",
20+
"node_modules/@angular/router/upgrade*"
2021
]
2122
}

‎packages/bazel/src/schematics/ng-add/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ function addDevDependenciesToPackageJson(options: Schema) {
4343

4444
const devDependencies: {[k: string]: string} = {
4545
'@angular/bazel': angularCoreVersion,
46-
'@angular/upgrade': angularCoreVersion,
4746
'@bazel/bazel': '^0.23.0',
4847
'@bazel/ibazel': '^0.9.0',
4948
'@bazel/karma': '^0.27.4',

0 commit comments

Comments
 (0)
Please sign in to comment.