Skip to content

Commit

Permalink
Bug(#32): Fix issue with SystemJS
Browse files Browse the repository at this point in the history
  • Loading branch information
danrevah committed Feb 28, 2017
1 parent 2c5e468 commit 578e8d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-pipes",
"version": "1.4.4",
"version": "1.4.5",
"author": "Dan Revah",
"description": "Useful angular2 pipes",
"license": "MIT",
Expand Down
10 changes: 5 additions & 5 deletions src/app/pipes.module.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {NgModule} from '@angular/core';
import {NgArrayPipesModule} from './pipes/array';
import {NgObjectPipesModule} from './pipes/object';
import {NgStringPipesModule} from './pipes/string';
import {NgMathPipesModule} from './pipes/math';
import {NgBooleanPipesModule} from './pipes/boolean';
import {NgArrayPipesModule} from './pipes/array/index';
import {NgObjectPipesModule} from './pipes/object/index';
import {NgStringPipesModule} from './pipes/string/index';
import {NgMathPipesModule} from './pipes/math/index';
import {NgBooleanPipesModule} from './pipes/boolean/index';

@NgModule({
declarations: [],
Expand Down

0 comments on commit 578e8d4

Please sign in to comment.