Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Commit

Permalink
fix(build): add board and list to the export
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuawilson committed Mar 4, 2017
1 parent 027fb0c commit 1e280ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
export { PlannerModule } from './planner.module';

export { WorkItemBoardComponent } from './src/app/work-item/work-item-board/work-item-board.component';
export { WorkItemComponent } from './src/app/work-item/work-item.component';
export { PlannerBoardModule } from './src/app/work-item/work-item-board/planner-board.module';
export { WorkItemListComponent } from './src/app/work-item/work-item-list/work-item-list.component';
export { PlannerListModule } from './src/app/work-item/work-item-list/planner-list.module';
export { WorkItemComponent } from './src/app/work-item/work-item.component';
export { WorkItemModule } from './src/app/work-item/work-item.module';

4 changes: 4 additions & 0 deletions planner.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { NgModule } from '@angular/core';

import { WorkItemModule } from './src/app/work-item/work-item.module';
import { PlannerBoardModule } from './src/app/work-item/work-item-board/planner-board.module';
import { PlannerListModule } from './src/app/work-item/work-item-list/planner-list.module';


@NgModule({
Expand All @@ -9,6 +11,8 @@ import { WorkItemModule } from './src/app/work-item/work-item.module';
declarations: [
],
exports: [
PlannerBoardModule,
PlannerListModule,
WorkItemModule
]
})
Expand Down

0 comments on commit 1e280ec

Please sign in to comment.