I wonder if this may be a basic thing, but so far I failed miserably at building canvaskit-wasm and using it locally.
I followed the instructions, cloned and built emscripten, added to the path, pulled all external dependencies and I can run " make release" in /modules/canvaskit-wasm and it finishes without errors.
But when I change my code to use this custom built version instead of the ones published in npm, when I run my app (which has been using skia for a couple of years no) it fails to render the animations. The errors seem to steam from the wasm compilation. This is one of the errors I get in the dev tools. There are more but all very similar.
```
canvaskit-wasm_bin_f….js?v=e6f599f1:3510 wasm streaming compile failed: LinkError: WebAssembly.instantiate(): Import #217 "a" "bd": function import requires a callable
```
Am I missing some crucial step?