We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60ce994 commit 2c203f5Copy full SHA for 2c203f5
packages/@angular-cli/ast-tools/src/change.ts
@@ -56,6 +56,10 @@ export class MultiChange implements Change {
56
}
57
58
appendChange(change: Change) {
59
+ // Do not append Noop changes.
60
+ if (change instanceof NoopChange) {
61
+ return;
62
+ }
63
// Validate that the path is the same for everyone of those.
64
if (this._path === undefined) {
65
this._path = change.path;
0 commit comments