a8m/ng-pipes

Include only necessary pipes

mebibou opened this issue · 0 comments

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 { }