I am using several packages from Atmosphere in my Meteor project. I would like to load a file I create before any file in those other packages load. I don't want to modify the source code of any of the Atmosphere packages.
Other stack overflow questions that mention load order here, and here reference the file load order section of the meteor docs. I'm not sure how this applies to the order that packages are loaded in.
Other advice on package load order mentions api.use, but I can't use app.use in the Atmosphere package since I don't want to modify their source code.
Any information about how meteor determines package load order without api.use would be helpful.