This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix invalid usage of
import/export
(adopted-ember-addons#221)
The combination of the way object-transforms.js is authored and the way it's consumed within this addon is not actually valid Javascript! Importing the default export from a module *does not* give you all the individual named imports in a handy container. The code only happens to work because Ember's loader is being lenient and doesn't really follow the ECMA module spec. But this code will break under any spec-compliant module loader, including embroider.
- Loading branch information