Skip to content

Commit

Permalink
fix(package): restored PipeModule exports (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlabrecq committed Jun 21, 2018
1 parent 624e876 commit 68208db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/app/navigation/navigation.module.ts
Expand Up @@ -27,7 +27,7 @@ export {
CommonModule,
VerticalNavigationModule
],
exports: [ ApplicationLauncherComponent, VerticalNavigationComponent]
exports: [ApplicationLauncherComponent, VerticalNavigationComponent]
})
export class NavigationModule {
constructor() {
Expand Down
11 changes: 5 additions & 6 deletions src/app/pipe/pipe.module.ts
Expand Up @@ -7,12 +7,6 @@ import { SortArrayPipe } from './sort-array/sort-array.pipe';
import { TruncatePipeModule } from './truncate/truncate.pipe.module';
import { TruncatePipe } from './truncate/truncate.pipe';

export {
SearchHighlightPipe,
SortArrayPipe,
TruncatePipe
};

/**
* A module containing objects associated with pipes
*
Expand All @@ -29,6 +23,11 @@ export {
SearchHighlightPipeModule,
SortArrayPipeModule,
TruncatePipeModule
],
exports: [
SearchHighlightPipe,
SortArrayPipe,
TruncatePipe
]
})
export class PipeModule {
Expand Down

0 comments on commit 68208db

Please sign in to comment.