Dmitry Petrov

Results 109 comments of Dmitry Petrov

@uNetworkingAB but I didn't claim anything =)

looks like accroding to docs you can use it together: https://swc.rs/docs/usage/swc-loader#with-babel-loader

After some research into the problem I found out a few details about how redux-saga works Here's what @vijah told me on discord: > `takeLatest`, `takeLeading`, `takeEvery` are not intended...

Hi, is it possible to validate source map by CLI without upload?

@jquense @ai PR is ready. When can it be merged?

I was offered a good solution on discord from vijah: ```js while (true) { yield race([take(END), call(someAsyncFn)]); } ``` But the question remains: is this behavior a bug or a...

I have similar question in redux toolkit: https://github.com/reduxjs/redux-toolkit/discussions/3756 Can we provide named export of createSagaMiddleware in redux-saga package? I think it will be helpful because - external code uses `require('redux-saga')`...

> > external code uses require('redux-saga') that use exports object as function instead its "default" property > > How is this possible? You can't do this in node today with...

I also ask that question in webpack but at this moment there is no answers https://github.com/webpack/webpack/discussions/17743