Order of compiling files inside js/plugins folder

Hi there,

Simple question, is there a way to control the order in which the plugin files inside the js/plugins folder are compiled to the script.js file? I want to use both Skrollr & Skrollr Menu plugin, but Skrollr Menu has to be loaded after Skrollr.

The filenames are:
skrollr.menu.min.js
skrollr.min.js

so right now skrollr.menu.min.js is compiled before skrollr.min.js. which causes errors.
Is changing filenames the only way to prevent this?

Thanks!

Manage them with Bower and add them to the Gruntfile as we have done with the Bootstrap scripts.

Ah that makes sense yes, why didnโ€™t I think of that!

So I installed the packages with Bower and theyโ€™re installed correctly inside the assets/vendor folder. Is it custom to add the unminified src javascript files to the gruntfile or the minified dist files?

Thanks!

All the other scripts use the un-minified versions, so that itโ€™s easier to debug during development.

Okay got it, thanks!