From fd0cc01eed7d4313b69f225aa167331b42d63390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Thu, 20 Jul 2017 14:36:25 -0700 Subject: [PATCH] fix(animations): export BrowserModule as apart of BrowserAnimationsModule (#18263) PR Close #18263 --- packages/platform-browser/animations/src/module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/platform-browser/animations/src/module.ts b/packages/platform-browser/animations/src/module.ts index effd444d2f..39ad025556 100644 --- a/packages/platform-browser/animations/src/module.ts +++ b/packages/platform-browser/animations/src/module.ts @@ -14,7 +14,7 @@ import {BROWSER_ANIMATIONS_PROVIDERS, BROWSER_NOOP_ANIMATIONS_PROVIDERS} from '. * @experimental Animation support is experimental. */ @NgModule({ - imports: [BrowserModule], + exports: [BrowserModule], providers: BROWSER_ANIMATIONS_PROVIDERS, }) export class BrowserAnimationsModule { @@ -24,7 +24,7 @@ export class BrowserAnimationsModule { * @experimental Animation support is experimental. */ @NgModule({ - imports: [BrowserModule], + exports: [BrowserModule], providers: BROWSER_NOOP_ANIMATIONS_PROVIDERS, }) export class NoopAnimationsModule {