Hey there! I'm developing an electron app, which will load shit tons of SVG files and play them as animations. The process of decoding SVG -> PIXI.Texture is pretty fast, however, with 1000 SVGs it takes some time to process... which makes sense. What I'd like to do is to keep the decoding outside of main thread, so user can interact with the system while images are loaded. Since I'm using electron my first attempt was to spawn/fork a sub process and it failed dramatically, becaus