Gernot Raudner
Gernot Raudner
looks like the cla bot doesn't recognize my account, i'll try to resubmit a new pr
i just ran a few more test with windows/linux and there's definitely differences in the produced source maps. on windows, it seems that `--source_map_include_content` is completely ignored, while on linux,...
@brad4d do you have a hint of where one could start fixing this? in the meantime i worked with WSL, which was fine so far, but now we're switching to...
here's the stack: ``` java -jar C:\workspaces\repos\reproducers\ts-esbuild-closure-reproducer\node_modules\google-closure-compiler-java\compiler.jar --chunk common:2 --chunk_wrapper common:(function(){%s})() --source_map_input dist/esbuild/chunk-7THFJKJQ.js|dist/esbuild/chunk-7THFJKJQ.js.map --js dist/esbuild/chunk-7THFJKJQ.js --source_map_input dist/esbuild/filecommon.js|dist/esbuild/filecommon.js.map --js dist/esbuild/filecommon.js --chunk filea:1:common --chunk_wrapper filea:(function(){%s})() --source_map_input dist/esbuild/filea.js|dist/esbuild/filea.js.map --js dist/esbuild/filea.js --chunk fileb:1:common --chunk_wrapper...
alright, so i tried a few more things you suggested today. i inlined all source maps (so no lookup for .map files needed anymore), got rid of the "--source_map_input" for...
@brad4d i spent quite some time yesterday and today checking out the closure compiler repo and building it myself. didn't manage to get it running within an ide but system...
that makes it a bit cumbersome if your application mostly uses `performance.now()`, in case you can't mock that using sinon because of playwright
basically measuring performance. call performance.now(), do something, call performance.now() again, then produce data depending on how long that took. i'm aware that this is also possible using Date.now(), but a)...
@p01 I think you misunderstood. I want to test that my measurements are correct if x time passed and different actions happened in between. For that I need performance.now to...
ok now this is going to be a bit complex 😅 i don't have a simple code example but i guess i can explain better what i want to test:...