Skip to content

Commit

Permalink
fix(generators): pipe naming for collection
Browse files Browse the repository at this point in the history
closes #110
  • Loading branch information
NathanWalker committed Mar 20, 2019
1 parent b57ecf0 commit 54d743e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/xplat/_lib_files/features/ui/pipes/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { DateOrderPipe } from './date-order.pipe';

export const PIPES = [
export const UI_PIPES = [
DateOrderPipe
];
6 changes: 3 additions & 3 deletions src/xplat/_lib_files/features/ui/ui.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { NgModule } from '@angular/core';
import { TranslateModule } from '@ngx-translate/core';
import { PIPES } from './pipes';
import { UI_PIPES } from './pipes';

const MODULES = [
TranslateModule
Expand All @@ -11,11 +11,11 @@ const MODULES = [
...MODULES
],
declarations: [
...PIPES
...UI_PIPES
],
exports: [
...MODULES,
...PIPES
...UI_PIPES
]
})
export class UISharedModule {}

0 comments on commit 54d743e

Please sign in to comment.