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.
1 parent 962d60b commit c04f7abCopy full SHA for c04f7ab
packages/schematics/update/update/index.ts
@@ -213,12 +213,14 @@ function _validateUpdatePackages(
213
|| peerErrors;
214
});
215
216
+ // tslint:disable:max-line-length
217
if (!force && peerErrors) {
218
throw new SchematicsException(tags.stripIndents
219
`Incompatible peer dependencies found.
220
Peer dependency warnings when installing dependencies means that those dependencies might not work correctly together.
221
You can use the '--force' option to ignore incompatible peer dependencies and instead address these warnings later.`);
222
}
223
+ // tslint:enable:max-line-length
224
225
226
0 commit comments