Looking to achieve this using Grunt. My current file structure is as follows:
/app
--app.js
--/module1
----module1.js
----module1Model.js
--/module2
----module2.js
----module2Model.js
How can I bundle and minify each module into a single file to appear like:
/app
--app.min.js
--module1.min.js
--module2.min.js
We aim for this process to be scalable, accommodating additional modules 3 and 4 seamlessly. Appreciate any assistance provided!