I know this is common question but every javascript and css packer/minifier i found is for node and contains a lot of necessary files/modules. Currenctly we are working on AngularJs application and we separated all our modules into different files and each controller also has it's own file (following this approach https://github.com/scotch/sapling). Also our server part is .NET MVC so we are not familiar with node or java tools.
This is what I need
- Package all .js files from folder including all child folders (unlimited deep)
- Decide if I want to run minification or just files concatenation
- Option to just run simple command to pack everything again
So basicly I need just simple packer and compress command line tool. I did some packing with Brunch but I on't like how it wraps my modules around with some code.
As an example here is code for Sapling
https://github.com/scotch/sapling
and here is how it looks packed (wrapped as modules)
http://sapling.scotchmedia.com/js/app.js
Anything simple that can fit these needs?