Is it possible to actually get the bundles that the framework would generate in runtime, but as physical files when publishing an application?
For instance, if I have 3 files in a bundle: a.js
, b.js
and c.js
(and/or a.min.js
, b.min.js
, c.min.js
), and I publish the website, I want to get only mybundle.js
(being its contents the combination in order of a, b and c minified versions).
Is this possible?