Skip to content

Commit

Permalink
Merge pull request #86 from TheMadBug/Fix_for_RollupJS
Browse files Browse the repository at this point in the history
Explicitly provide the names of exported items rather than export *.
  • Loading branch information
urish authored Oct 4, 2016
2 parents 9f008c8 + 5c49033 commit 7d609cb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export * from './module';
export * from './CalendarPipe';
export * from './DateFormatPipe';
export * from './DurationPipe';
export * from './FromUnixPipe';
export * from './TimeAgoPipe';
export * from './DifferencePipe';
export { MomentModule } from './module';
export { CalendarPipe } from './CalendarPipe';
export { DateFormatPipe } from './DateFormatPipe';
export { DurationPipe } from './DurationPipe';
export { FromUnixPipe } from './FromUnixPipe';
export { TimeAgoPipe } from './TimeAgoPipe';
export { DifferencePipe } from './DifferencePipe';

0 comments on commit 7d609cb

Please sign in to comment.