shakers 0.0.36 → 0.0.37
raw patch · 3 files changed
+8/−3 lines, 3 files
Files
- Shakefile.hs +3/−2
- shakers.cabal +1/−1
- src/Development/Shakers.hs +4/−0
Shakefile.hs view
@@ -36,8 +36,9 @@ -- | sanity --- fake "." pats "sanity" $ const $- need [ "build-error", "lint", "weed" ]+ fake "." pats "sanity" $ const $ do+ need [ "build-error" ]+ need [ "lint", "weed" ] -- | Default things to run. --
shakers.cabal view
@@ -1,5 +1,5 @@ name: shakers-version: 0.0.36+version: 0.0.37 cabal-version: >=1.22 build-type: Simple license: MIT
src/Development/Shakers.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE CPP #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} @@ -57,6 +58,9 @@ ) where import BasicPrelude as Exports hiding ((*>))+#if MIN_VERSION_basic_prelude(0,7,0)+import Control.Exception.Lifted+#endif import Control.DeepSeq import Data.Char import Development.Shake as Exports