Comparing version 0.2.11 to 0.2.12
{ | ||
"name": "fluxury", | ||
"version": "0.2.11", | ||
"version": "0.2.12", | ||
"description": "Add luxury sugar to simplify implementing Facebook's flavor of Flux architecture.", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -25,3 +25,3 @@ # fluxury | ||
2. Fluxory.createActions(action1, action2, ..., actionN) | ||
2. Fluxury.createActions(action1, action2, ..., actionN) | ||
@@ -79,3 +79,3 @@ Create your actions from a list of strings as `arguments`. | ||
import {INC} from './MyActions' | ||
export default Fluxor.createStore('CountStore', 0, function(state, action) { | ||
export default Fluxury.createStore('CountStore', 0, function(state, action) { | ||
if (action.type === INC) { | ||
@@ -82,0 +82,0 @@ return state + 1; |
10127