I am currently using browserify and babel to build my app which is working fine in conjunction with browsersync.
I tried to add in uglify which ran fine but when I loaded the app, I had issues with an @pipe saying it could not find the provider. I have the following:
...
import { filter } from '../../../filters/filter';
@Component({
selector: 'app-thing',
pipes: [filter],
inputs: ['input'],
template: template,
providers: [
...
]
})
...
Any ideas?
Thanks
I am currently using browserify and babel to build my app which is working fine in conjunction with browsersync.
I tried to add in uglify which ran fine but when I loaded the app, I had issues with an @pipe saying it could not find the provider. I have the following:
Any ideas?
Thanks