You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Really love this library, but something I've been wondering about is ordering files within a sub directory of the given source.
My use case is probably fairly common, Bootstrap installed via Bower. Bootstrap annoyingly has a requirement for tooltip.js inside its popover.js, and of course by default tooltip would get loaded after popover in any build process.
The overall order is correct (ie., lodash, jquery then bootstrap) but bootstrap's ordering is just sticking to alphabetical ordering of the files. I think I could probably achieve this by building bootstrap first and then calling another function to build them all together, but was wondering if there was a way to do it in a single function.
The text was updated successfully, but these errors were encountered:
Really love this library, but something I've been wondering about is ordering files within a sub directory of the given source.
My use case is probably fairly common, Bootstrap installed via Bower. Bootstrap annoyingly has a requirement for
tooltip.js
inside itspopover.js
, and of course by default tooltip would get loaded after popover in any build process.To solve this I tried doing the following
The overall order is correct (ie., lodash, jquery then bootstrap) but bootstrap's ordering is just sticking to alphabetical ordering of the files. I think I could probably achieve this by building bootstrap first and then calling another function to build them all together, but was wondering if there was a way to do it in a single function.
The text was updated successfully, but these errors were encountered: