I'm trying to express the following order, but it's not working as I had hoped:
[
"app.js",
"**/*.js",
"debug.js"
]
I want debug.js to always be at the end, but since it matches the **/*.js, it get placed too early. How can I express that a certain file (certain files) should come later?