ipos

Results 3 issues of ipos

**What is the current behavior:** An effect derived by `attach` method takes two params `source` and `params`. It makes sense when `source` was actually passed, and doesn't when `source` wasn't...

bug
enhancement
fork api

Current `enforce-store-naming-convention` rule passes this case, but it is not correct: ```js export const sum = createStore(0) .on(add, (sum) => sum + 1) .on(sub, (sum) => sum - 1) .reset(reset);...

fix

There are two issues related with hot module replacement(HMR), these issues is following: 1. keep states of stores between module replacements 2. avoid duplicates of units and connection between units...

question