Releases: deamme/laco
Releases · deamme/laco
Laco 1.1.0
Laco 1.0.0
Breaking changes and new methods
- All Laco routere has been deprecated.
Store.set()
has changed fromStore.set({ count: SomeStore.get().count + 1 }, "increment")
toStore.set((state) => { count: state.count + 1 }, "increment")
Store.replace()
has been introduced - more on it here
Laco 0.4.0
DEPRECATION of state persistence
This is in favor of hot reloading that seems to work really well in e.g. Next.js