Skip to content

Commit

Permalink
fix(bazel): Remove @angular/upgrade from dev dependencies (#29319)
Browse files Browse the repository at this point in the history
@angular/upgrade is unnecessary, but it's required by router/upgrade.

PR Close #29319
  • Loading branch information
kyliau authored and matsko committed Mar 15, 2019
1 parent f7738ad commit 1db8bf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -16,6 +16,7 @@
"exclude": [
"node_modules/@angular/bazel/**",
"node_modules/@angular/compiler-cli/**",
"node_modules/@angular/**/testing/**"
"node_modules/@angular/**/testing/**",
"node_modules/@angular/router/upgrade*"
]
}
1 change: 0 additions & 1 deletion packages/bazel/src/schematics/ng-add/index.ts
Expand Up @@ -43,7 +43,6 @@ function addDevDependenciesToPackageJson(options: Schema) {

const devDependencies: {[k: string]: string} = {
'@angular/bazel': angularCoreVersion,
'@angular/upgrade': angularCoreVersion,
'@bazel/bazel': '^0.23.0',
'@bazel/ibazel': '^0.9.0',
'@bazel/karma': '^0.27.4',
Expand Down

0 comments on commit 1db8bf3

Please sign in to comment.