Dario Segura

Results 16 comments of Dario Segura

https://github.com/darionco/rollup-plugin-web-worker-loader :D

also, doesn't happen in firefox, sometimes chromes runs for a few hours and then crashes... weird!

Contents of my log file: ``` /Users/dsegura/Projects/aspects/node_modules/node-parquet/build_deps/parquet-cpp/thrift_ep-prefix/src/thrift_ep/compiler/cpp/src/thrift/thrifty.yy:1.1-5: invalid directive: `%code' /Users/dsegura/Projects/aspects/node_modules/node-parquet/build_deps/parquet-cpp/thrift_ep-prefix/src/thrift_ep/compiler/cpp/src/thrift/thrifty.yy:1.7-14: syntax error, unexpected identifier make[5]: *** [compiler/cpp/thrift/thrifty.cc] Error 1 make[4]: *** [compiler/cpp/CMakeFiles/parse.dir/all] Error 2 make[3]: *** [all] Error 2...

yup this is a good idea, I think it would be nice if the plugin would have different patterns for the different types of workers, that way it could also...

Hello! Thanks for checking this project out, I promise I'll continue developing it one day :) As for your question, yes you can load other file types, the way to...

with your current configuration the worker gets embedded in the index file as a base64 string so there is no need for a standalone worker file. If you want to...

I am not sure I understand the question, I'll try to explain how the plugin works by default.: - the worker code with all its imports get bundled into a...

Sorry for the late response. This seems like a bug on my side, would you be able to provide me with a small sample project of the bug? I am...

WASM really speeds up the processing but the multithreading is where most of the performance comes from. Unfortunately that means that performance is very dependant on the client's computer. On...

you might be missing the `workers.d.ts` declaration from the project root: ```TypeScript declare module 'web-worker:*' { const WorkerFactory: new () => Worker; export default WorkerFactory; } ``` another option (that...