Almin 0.12をリリースしました。 Release Almin 0.12 · almin/almin StoreとStoreGroupが書き直されたので色々変わっていますが、マイグレーションツールでアップデートできます。 変更点 StoreGroupを書き直した Before: class AStore extends Store { getState() { return {a : "a value"}; } } class BStore extends Store { getState() { return {b : "b value"}; } } const aStore = new AStore(); const bStore = new BStore(); const storeGroup = new StoreGroup( aStore, bStore ]); conso
