I have an AngularJS project and I want Webpack to handle the build process for me, I need Webpack to output JS files dynamically from the src
folder into my HTML
template, and output them like this:
<script src="source1.js"></script>
<script src="source2.js"></script>
<script src="source3.js"></script>
...
Is it possible to load files in specific order rather than getting them all in one big file?