You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm working on a N-API implementation on top of deno_core and Tokio (https://github.com/littledivy/napi-rusty-v8/) and we're trying to get all of parcel's native modules to work. The implementation is eventually going to be merged in Deno.
Since this is built on top of Tokio, we're avoiding to expose libuv polyfills. This makes @parcel/watcher incompatible. Would it be possible to use napi_async_work instead of libuv for the Watcher?
The text was updated successfully, but these errors were encountered:
This is different from napi_async_work, because we execute a JS callback multiple times. We use uv_async_send to call into the JS thread from a background thread where watching is occurring.
Hi! I'm working on a N-API implementation on top of deno_core and Tokio (https://github.com/littledivy/napi-rusty-v8/) and we're trying to get all of parcel's native modules to work. The implementation is eventually going to be merged in Deno.
Since this is built on top of Tokio, we're avoiding to expose libuv polyfills. This makes
@parcel/watcher
incompatible. Would it be possible to use napi_async_work instead of libuv for the Watcher?The text was updated successfully, but these errors were encountered: