My CoffeeScript code is ~6,000 lines. For my sanity, I want to separate it to several files.
CoffeScript adds a wrapper for every file:
(function() {
something = [1,2,3]
}).call(this);
But instead, I want it to wrap all the files in the manifest together. How do I get this to work?