We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@angular-devkit/build-ng-packagr
1 parent 1cfb7a7 commit ddd114cCopy full SHA for ddd114c
packages/schematics/update/update/index.ts
@@ -172,6 +172,12 @@ function _validateReversePeerDependencies(
172
continue;
173
}
174
175
+ if (installed === '@angular-devkit/build-ng-packagr') {
176
+ // Ignore peerDependencies mismatches for `@angular-devkit/build-ng-packagr`.
177
+ // This package is deprecated and is removed via a migration.
178
+ continue;
179
+ }
180
+
181
// Override the peer version range if it's known as a compatible.
182
const extendedRange = _updatePeerVersion(infoMap, peer, range);
183
0 commit comments