I have several JavaScript files that I need to bundle and minify manually. We can't use the standard System.Web.Optimization bundles on application start solution as it causes issues due to our complex caching needs.
To bundle and minify these, could I just concatenate the file content, then minify using a simple processor like System.Web.Optimization.JsMinify? Would there be certain types of JS code for which this method wouldn't work?