react-flux 1.0.6 → 1.0.7
raw patch · 3 files changed
+6/−2 lines, 3 files
Files
- ChangeLog.md +4/−0
- react-flux.cabal +1/−1
- src/React/Flux/Views.hs +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+# 1.0.7++* Fix the build when building with GHC instead of GHCJS (an import was incorrectly protected by CPP)+ # 1.0.6 * Fix a rare bug in stateful view event handlers: occasionally deepseq was not called and so there
react-flux.cabal view
@@ -1,5 +1,5 @@ name: react-flux-version: 1.0.6+version: 1.0.7 synopsis: A binding to React based on the Flux application architecture for GHCJS category: Web homepage: https://bitbucket.org/wuzzeb/react-flux
src/React/Flux/Views.hs view
@@ -3,12 +3,12 @@ import Control.Monad.Writer import Data.Typeable (Typeable)+import Control.DeepSeq import React.Flux.Store import React.Flux.Internal #ifdef __GHCJS__-import Control.DeepSeq import System.IO.Unsafe (unsafePerformIO) import React.Flux.Export import JavaScript.Array