DEV: use explicit default export in I18n shim (#22519)

Currently the I18n module shim return an object. Per AMD/loader.js,
the properties on the object becomes named exports of the module,
i.e. `import { t } from 'I18n';`.

However, this is not how we actually consume this module. We always
do `import I18n from 'I18n';`.

The returned object from the shim (`window.I18n`) does NOT have a
`default` property on it. This is only working because loader.js
has a `makeDefaultExport` feature that defaults to true, which we
are relying on to synthesize the default export for us.

That feature has been noted as undesirable and may some day be
deprecated. In Embroider, it specifically disables the feature in
loader.js.

https://github.com/embroider-build/embroider/issues/539
This commit is contained in:
Godfrey Chan 2023-07-10 14:06:18 -07:00 committed by GitHub
parent 049c4b606a
commit f84832957d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
define("I18n", ["exports"], function (exports) {
return I18n;
exports.default = I18n;
});
define("htmlbars-inline-precompile", ["exports"], function (exports) {