From 89884b9dbc74143fb2c581c32d3b92ae18fa2e06 Mon Sep 17 00:00:00 2001 From: Chris Thielen Date: Sun, 5 Mar 2017 11:36:13 -0700 Subject: [PATCH] fix(bundle): work around rollup bug https://github.com/rollup/rollup/issues/1322 --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index d3cf675bd..cfd183ed8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ /** @ng2api @module ng2 */ /** for typedoc */ -export * from "ui-router-core"; + export * from "./interface"; export * from "./decorators/index"; export * from "./providers"; @@ -8,3 +8,5 @@ export * from "./uiRouterConfig"; export * from "./directives/directives"; export * from "./statebuilders/views"; export * from "./lazyLoad/lazyLoadNgModule"; + +export * from "ui-router-core";