Skip to content

Commit 6a08673

Browse files
committed
fix platform exports
1 parent bac0388 commit 6a08673

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/lib/core/core.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ export {DomPortalHost} from './portal/dom-portal-host';
3030
export * from './projection/projection';
3131

3232
// Platform
33-
export * from './platform/platform';
34-
export * from './platform/features';
33+
export * from './platform/index';
3534

3635
// Overlay
3736
export {Overlay, OVERLAY_PROVIDERS} from './overlay/overlay';

src/lib/core/platform/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import {NgModule, ModuleWithProviders} from '@angular/core';
22
import {MdPlatform} from './platform';
33

4+
export * from './platform';
5+
export * from './features';
6+
47

58
@NgModule({})
69
export class PlatformModule {

0 commit comments

Comments
 (0)