Skip to content

Releases: deamme/laco

Laco 1.1.0

25 Aug 11:53
Compare
Choose a tag to compare

Critical bug fix - please update

Laco 1.0.0

23 Aug 14:43
Compare
Choose a tag to compare

Breaking changes and new methods

  • All Laco routere has been deprecated.
  • Store.set() has changed from Store.set({ count: SomeStore.get().count + 1 }, "increment") to Store.set((state) => { count: state.count + 1 }, "increment")
  • Store.replace() has been introduced - more on it here

Laco 0.4.0

23 Apr 08:18
Compare
Choose a tag to compare

DEPRECATION of state persistence
This is in favor of hot reloading that seems to work really well in e.g. Next.js