If you have an initializer that does not have a default export:
export function initialize() {}
// export default { initialize }
resolveInitializer crashes here:
|
var initializer = module['default']; |
|
if (!initializer.name) { |
This function only seems to be called when I enable Embroider builds, not in regular ember-cli builds, so I'm not sure if this is intentional or what the expectations are.
ember-cli could be stricter and require this default export, but if it's intentional to not require the default export, then resolveInitializer should handle this case as well?
If you have an initializer that does not have a default export:
resolveInitializercrashes here:ember-load-initializers/addon/index.ts
Lines 15 to 16 in b69de85
This function only seems to be called when I enable Embroider builds, not in regular ember-cli builds, so I'm not sure if this is intentional or what the expectations are.
ember-cli could be stricter and require this default export, but if it's intentional to not require the default export, then
resolveInitializershould handle this case as well?