I am working on a Symfony project with a Twitter Bootstrap template where the assets are hardcoded in Twig. I would like to use Encore to manage assets, but I want it to only combine JavaScript files without compiling them further.
Is there a way to configure Encore to just combine JS files?
To install Encore, you can follow the steps outlined here: https://symfony.com/doc/current/frontend/encore/installation.html
...and here's my idea for the app.js file:
include '1-file.js'; // alert(1);
include '2-file.js'; // alert(2);
And the desired output in Twig:
merged.js // alert(1); alert(2);
Thank you in advance for any advice.