Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ node_modules/
bower_components/
tmp/
output/
*.tix
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"!src/**/*"
],
"dependencies": {
"purescript-profunctor-lenses": "~0.5.4",
"purescript-react": "~0.7.1"
"purescript-profunctor-lenses": "~1.0.0",
"purescript-react": "~1.1.0"
}
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "purescript-react-redux",
"version": "0.1.0",
"version": "1.0.0",
"private": true,
"files": [],
"scripts": {
"psc:server": "psc-ide-server --port 4291 --debug",
"psc:watch": "pscid -p 4291",
"build": "pulp build --force"
"build": "pulp build"
},
"devDependencies": {
"pscid": "^1.7.3",
"purescript": "^0.8.5"
"pscid": "^1.10.0",
"purescript": "^0.9.1"
}
}
2 changes: 1 addition & 1 deletion src/React/Redux.purs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import Control.Monad.Eff (Eff)
import Control.Monad.Eff.Class (class MonadEff, liftEff)

import Data.Either (Either, either)
import Data.Function (Fn2, runFn2)
import Data.Function.Uncurried (Fn2, runFn2)
import Data.Lens (GetterP, LensP, PrismP, matching, set, view)

import Unsafe.Coerce (unsafeCoerce)
Expand Down