a8m / ng-pipes

Bunch of useful pipes for Angular2 (with no external dependencies!)
https://a8m.github.io/ng-pipes/
MIT License
118 stars 24 forks source link

Include only necessary pipes #22

Closed mebibou closed 6 years ago

mebibou commented 6 years ago

Not an issue per say, but I think you could mention in the readme that one could only include specific pipes rather than loading the entire library and adding unnecessary bytes to the file.

Personally I use like this

import { FilterByPipe } from 'ng-pipes/src/collection/filter-by.pipe';

@NgModule({
  declarations: [
    FilterByPipe
  ]
})
export class AppModule { }