SonyStone
SonyStone
> If someone has the time to dig deeper and find out what exact dependency causes this and create an issue in the repo of the corresponding library (probably webpack...
Да, лучше ставить фиксированную версию. На проектах было множества проблем когда у npm пакетов ломалась обратная совместимость на patch версии. Большинство пакетов очень плохо соблюдают npm versioning semantic.
Can you try to add this ↓ too Webpack config? Will you check to see if that helps solve the problem? ``` watchOptions: { aggregateTimeout: 200, poll: 200, }, ```...
I needed this feature too, so I created a PR
Can we add those types first? https://github.com/ngrx/platform/pull/4315 And then do any breaking changes?
Can we make the parameters with features for `signalStore` just an array? ```typescript signalStore(conf, [ withState(), withMethods(), withMethods(), [ withMethods(), withMethods(), ] ]) ``` And inside `signalStore` just do: ```typescript...
@rainerhahnekamp With builder pattern I don't know how to group features together and the builder pattern isn't tree-shakable. Maybe some kind of `Observable.pipe`? `signalStore` already have `signalStoreFeature`, вut it does...
It should be something like this ```typescript type HttpMethod = "get" | "post" | "put" | "delete" | "patch"; async function send( method: HttpMethod , url: string, data?: any, ):...
Are there more recent examples of a real world app? This `store` is exactly what I'm interested in how to implement in my app.