diff --git a/packages/compiler/src/render3/view/template.ts b/packages/compiler/src/render3/view/template.ts index 3704c2b7f2..ed55319205 100644 --- a/packages/compiler/src/render3/view/template.ts +++ b/packages/compiler/src/render3/view/template.ts @@ -489,7 +489,8 @@ export class TemplateDefinitionBuilder implements t.Visitor, LocalResolver // Generate element input bindings allOtherInputs.forEach((input: t.BoundAttribute) => { if (input.type === BindingType.Animation) { - this._unsupported('animations'); + console.error('warning: animation bindings not yet supported'); + return; } const convertedBinding = this.convertPropertyBinding(implicit, input.value);