When defining a module in require.js, I have to always list the common libs as dependencies:
define(['jquery', 'underscore', 'backbone'], function(){
//do stuff here
});
Is there a way that I don't have to always require these common modules in every define and just require them once, or does this ruin the whole concept of independent modules?