Mikhail Shemenyov

Results 9 comments of Mikhail Shemenyov

@evilaliv3 There is the option: > addPrefixToSelector: Custom function for adding prefix to selector. Optional. Example: > > function addPrefixToSelector ( selector, prefix ) { > return `${prefix} > ${selector}`...

@evilaliv3 no, I'll try to wait for answer from @vkalinichev

> FWIW just to add to this issue; we've been evaluating this plugin and we're blocked on using this as well. For us it creates large bundle regressions. Most css...

> Shorter/cleaner version in Typescript > > ```ts > const watcher = (globs: string[]): Partial => ({ > buildStart() { > for (const item of globs) { > glob.sync(nodePath.resolve(item)).forEach((filename) =>...

well. it's also will solve my problem https://github.com/microsoft/redux-dynamic-modules/issues/145 So waiting for review this PR

Looks like I should move middleware from store to module: ``` export function commonModule(): IEpicModule { return { id: 'module', reducerMap: moduleReducer, epics: moduleEpics, middlewares: [epicMiddleware] } } ``` But...

So, I think I found the problem. And I think I can create a PR, just check my explorations: ``` // create deps object to be accessible in epics const...

@mnasyrov Thank you, It's very helpful. And I think It resolves a very common problem. @dfahlander is it possible to create a helper such `keepTransactionUntil` out of the box?