Client/compatibility/* is NOT loading first!

Hello meteorians!

in my Directory structure I need to load some files before any other script (client side) so I’m using this structure base on this

some files are follow:

/* /client/compatibility/01-jqueryui/jqueryui.js */
console.log("jQueryUI");

/* /client/compatibility/02-highchart/highchart.js */
console.log("highcharts");

/* /client/view/monitor/monitor.js */
console.log("monitor");

/* /client/view/dashboard/dashboard.js */
console.log("dashboard");

the output is:

dashboard
monitor
jQueryUI
highcharts

is something that I’m missing?

I notice if I rename /client/compatibility/ -> /client/lib, it works how ever it breaks /lib (which I have in the root folder to load files for both client and server side)

is this a bug?