Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
Fix missing module export
Browse files Browse the repository at this point in the history
  • Loading branch information
fknop committed Feb 15, 2017
1 parent 1e294c1 commit 9a63535
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-pipes",
"version": "6.1.0",
"version": "6.1.1",
"description": "Angular pipes library",
"main": "src/index.js",
"jsnext:main": "esm/index.js",
Expand Down
9 changes: 7 additions & 2 deletions src/array/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import { DropPipe } from './drop.pipe';
import { DeepPipe } from './deep.pipe';
import { ChunkPipe } from './chunk.pipe';
import { FlattenPipe } from './flatten.pipe';
import { IntersectionPipe } from './intersection.pipe';

export * from './empty.pipe';
export * from './head.pipe';
Expand All @@ -49,6 +50,8 @@ export * from './drop.pipe';
export * from './deep.pipe';
export * from './chunk.pipe';
export * from './flatten.pipe';
export * from './intersection.pipe';



@NgModule({
Expand Down Expand Up @@ -76,7 +79,8 @@ export * from './flatten.pipe';
DeepPipe,
ChunkPipe,
FlattenPipe,
FirstOrDefaultPipe
FirstOrDefaultPipe,
IntersectionPipe
],
exports: [
EmptyPipe,
Expand All @@ -102,7 +106,8 @@ export * from './flatten.pipe';
DeepPipe,
ChunkPipe,
FlattenPipe,
FirstOrDefaultPipe
FirstOrDefaultPipe,
IntersectionPipe
]
})
export class NgArrayPipesModule {}

0 comments on commit 9a63535

Please sign in to comment.