By the way, you should be able to fix this in your library so that users
don't have to do this themselves. You can do something like this:
- System.meta.myth = { format: "cjs" };
-
- exports.translate = function(load) {
- return System.import("myth").then(function(myth) {
- // Do rest of translation here.
- });
- };
Untested but I think that would work.