I have followed a couple of tutorials regarding the development of Angular 2 applications, but none of them discuss what to do once development is complete.
I have created an application with Typescript and SystemJS, but what are the steps to produce a production-ready package?
My current approach is to check out the files to a new location (without the node_modules folders) and run npm install --production
then remove the typescript files. I realise this is a horrible way to produce a production-ready package and doesn't contain any minification. I am not familiar with Webpack, SystemJS, gulp, grunt etc... and am looking for pointers in the recommended direction.