aurelia / metadata

Utilities for reading and writing the metadata of JavaScript functions.
MIT License
28 stars 33 forks source link

Exists bug in dist/system/index - key need to be _key #52

Closed luboid closed 6 years ago

luboid commented 7 years ago
if (_key !== "default" && key !== "__esModule") _exportObj[_key] = _aureliaMetadata[_key];

need to be

if (_key !== "default" && _key !== "__esModule") _exportObj[_key] = _aureliaMetadata[_key];

this exists and in some others modules

jdanyow commented 7 years ago

@EisenbergEffect https://github.com/aurelia/metadata/blob/master/dist/system/index.js#L11

EisenbergEffect commented 7 years ago

Looks like a transpiler bug. Does anyone know if this is fixed in Babel? or if we are going to have to hand edit all of these files after the transpilation is complete for every release?

EisenbergEffect commented 6 years ago

The transpilers have been fixed. I'll get a release out for this soon.