I'm totally new to all the node shenanigans and don't quite know the best solution for the issue I have, maybe someone can point me towards the best solution towards it.
I have a setup with the framework Buddy to compile coffeescript into JS, all runs smoothly. What I need now is some tool to merge and preferably uglify and mangle the scripts together into one script.
Buddy has a nice setup where it auto-compiles the scripts upon save, is there such a tool that also watches and does said operations after Buddy has done its thing?
coffee --join. Then you would just have to pipe it through uglify,npm install uglify-js.