export keys are not correct
in current recur implementation of export, the result key is somehow got all connected with dot. so instead of "reg, cfg, map, ctx", now the exported keys are "reg, reg.cfg, reg.cfg.map, reg.cfg.map.ctx"
I submitted a PR trying to fix this issue. I pass the field to the "async" func and let async call export with this parameter to avoid nested export key.
Should we just put something in docs in the meantime? If this isn't being merged, then point out that file names are wrong, rather than that the filename is the first param to be passed in.
Yes, this took me hours to figure out. Would be very helpful to flag it in the docs with a workaround. Here's what I used:
const fixedKey = key.split(".").slice(-1)[0];
This is now fixed in v0.7.23 Further improvements to provide Promise.all() compatible export ist coming in next version.