I watch a lot of tutorials of angular 2, and I couldn't some questions:
- 1- Should I use webpack for minification and bundleling?
- 2- Should I minify and bundle the js of the components itselfs.
- 3- Should I minify and bundle the js services that the components expose e.g. personService.js is used in person.ts?
- 4- What happens with the path of the service I provide inside the component, now it will be in one file located in another place? Should I change the path of the service called in the component depending on if I'm in development o production?