Lucjan Suski
Lucjan Suski
Also expose getActions in helpers. Fixes #596.
I noticed calling Thunk on a generic model is broken in TypeScript: ```ts interface Base { a: string; } interface Model { data: Generic; add: Action; doSomething: Thunk; } function...
According to docs, stateResolvers pass two arguments, so one can do something like this: ```js const store = createStore({ listener: { onTodosChanged: unstable_effectOn([(_state, storeState) => storeState.todos], (actions) => { actions.setFired(true);...
This test passes: ```js test('it receives the local actions for nested model', () => { // ARRANGE const store = createStore({ nested: { fired: false, todos: [], addTodo: action((state, payload)...
Check out https://prettier.io/docs/en/why-prettier.html for Why
Checkout.js now supports source callback: https://stripe.com/docs/checkout#required
Hey! Just been testing devbox and the experience so far is really smooth. I stumbled upon 3 things that confused me: 1. `devbox add package` failed with `Package not found`...