Skip to content

Commit ae79da1

Browse files
authored
Merge pull request #11 from purescript-contrib/phil/ci
Fix the build
2 parents 878ce25 + 07ce466 commit ae79da1

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22
"private": true,
33
"scripts": {
44
"clean": "rimraf output && rimraf .pulp-cache",
5-
"build": "jshint src && jscs src && pulp build --censor-lib --strict",
5+
"build": "pulp build -- --censor-lib --strict",
66
"test": "pulp test"
77
},
88
"devDependencies": {
9-
"jscs": "^2.8.0",
10-
"jshint": "^2.9.1",
11-
"pulp": "^10.0.4",
12-
"purescript-psa": "^0.3.9",
9+
"pulp": "^11.0.0",
10+
"purescript-psa": "^0.5.0",
1311
"rimraf": "^2.5.0"
1412
}
1513
}

src/Control/Monad/Free/Trans.purs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ instance monadAskFreeT :: (Functor f, MonadAsk r m) => MonadAsk r (FreeT f m) wh
9797
instance monadTellFreeT :: (Functor f, MonadTell w m) => MonadTell w (FreeT f m) where
9898
tell = lift <<< tell
9999

100+
instance monadStateFreeT :: (Functor f, MonadState s m) => MonadState s (FreeT f m) where
101+
state = lift <<< state
102+
100103
instance monadThrowFreeT :: (Functor f, MonadThrow e m) => MonadThrow e (FreeT f m) where
101104
throwError = lift <<< throwError
102105

0 commit comments

Comments
 (0)