We could use {loadEagerly: ["/packages/*/package.js", ... ]} to load package.js file first and then load other files and understand the exports.
We don't want to load everything to make it feel like real Meteor. In reality, it is often to forget to 'add' new files to package.js, this feature could help in spotting such situations.
We could use
{loadEagerly: ["/packages/*/package.js", ... ]}to loadpackage.jsfile first and then load other files and understand the exports.We don't want to load everything to make it feel like real Meteor. In reality, it is often to forget to 'add' new files to
package.js, this feature could help in spotting such situations.