Nino Floris

Results 314 comments of Nino Floris

Yes this is bugging us too, webpack generates the hashes of files before starting the compilation. This means our final webpack runtime chunk is byte for byte equal to a...

Related by outcome for sure ^_^ After tuning and reading the webpack source I have something that also works if the runtime code is inside another chunk! Got it working...

Yes which is variable due to not using named chunks, as the only initial entry will ever be the runtime chunk, once you do that you get the next issue...

Thanks for creating the other issue :) Although I have to add, as I said, the `installedChunks` variable always has an initial value of ```js { #runtimechunkid#: 0 } ```...

Basically that happens here https://github.com/webpack/webpack/blob/8b0a2ad2b3298372bf09ec22017e373625f5b06a/lib/JsonpMainTemplatePlugin.js#L12 I'm not sure though if you can just remove that entry, something has to bootstrap the bootstrapper basically in this case, that's why the initial...

@ MauMaGau Bump, could you please integrate this fix like they did in the educarlabs fork (which is less maintained). This fix is a huge performance upgrade when the text...

Ok so I have put my money where my mouth is a few weeks after I asked for this here and integrated it myself. However I still haven't opened a...

There you go! https://github.com/dibari/angular-ellipsis/pull/79

@vcsjones I can make a PR to fix this if this is indeed unexpected behavior.

Additionally, I've found another angle where this goes wrong. GetOffset in the multi segment branch uses `currentSegment.RunningIndex` instead of the segment's memory length (minus any starting indices). The issue here...