Timofei Iatsenko

Results 292 comments of Timofei Iatsenko

I've just followed pattern with other functions such as `domain.createEvent`, `domain.createEffect` etc. I'm a new user of effector an if this is not required and will work with no issue...

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

Check what is in compilled output. Seems this module will be empty in bundle.

assume your application package has an @application prefix then, using standard eslint rule ``` "no-restricted-imports": ["error", { name: '@applications/*', message: 'Please don't import from another application. Extract common parts into...

I have the same problem, it would be nice to see what exactly bursting the cache. I tried to integrate Trubo instead of our current task runner https://github.com/folke/ultra-runner which is...

It's because this module uses constructor name as injection token, which seems no longer work in nest 8. ```typescript /** * The decorator to be used within your graphql method....

I will add a bit from my experience. The built-in Angular i18n tooling solve this problem effectively. Instead of globbing folders, they wrote a plugin for bundler (webpack). It is...

Sounds reasonable. Hopefully bumping version of the project is not a very big task as long it's straightforward and not including extending test suite to test again all obsolete version....

Usually it's enough to introduce "logical" units instead of physical. Examples are start/end instead of left/right. Then this logical units might be swapped when you switch between rtl/ltr version. This...

tracking PR: https://github.com/vercel/next.js/pull/50651