Manuel Mujica
Manuel Mujica
hmm, so the "problem" is that, since I added the `graphs` object in outputs, each item in the graph is build independently but they are written out to the same...
The code path executed https://github.com/stealjs/steal-tools/blob/b7e1702dce878465a545dcce0906ca4dacfbcd09/lib/build/export.js#L184-L191
@matthewp I eventually got it working as expecting by removing the graphs object from the config, just wondering. Is there anything to fix here? or should I just close it?
@pYr0x `global.steal` is configuration the slim loader needs to figure out where stuff is on runtime, it's not the same config you define in your `package.json`. The `@loader` shim just...
e.g: ``` global.steal.map = { "[email protected]#components/content/content": 141 }; ``` the loader uses numeric ids instead of the long module names, but for modules dynamically loaded steal-tools can't assign numeric ids...
@jeroencornelissen what varsion of steal-tools were you using? I pushed your example code here https://github.com/m-mujica/steal-sourcemaps-issue but I'm unable to replicate the issue you're reporting, it seems to work fine in...
I tried with minify set to false and seemed to work fine. On Sep 15, 2017 8:25 PM, "Julian" wrote: > @m-mujica he said > > If I build with...

@jeroencornelissen thank you! I'll take a look :)
@jeroencornelissen I did spend some time on this but couldn't find a fix. Might be an issue with the babel -> escodegen transform. I plan to continue working on this,...