diff --git a/packages/@angular-cli/ast-tools/src/change.ts b/packages/@angular-cli/ast-tools/src/change.ts index b9b2655d6912..073956ad5b02 100644 --- a/packages/@angular-cli/ast-tools/src/change.ts +++ b/packages/@angular-cli/ast-tools/src/change.ts @@ -56,6 +56,10 @@ export class MultiChange implements Change { } appendChange(change: Change) { + // Do not append Noop changes. + if (change instanceof NoopChange) { + return; + } // Validate that the path is the same for everyone of those. if (this._path === undefined) { this._path = change.path;