shakers 0.0.10 → 0.0.11
raw patch · 2 files changed
+10/−1 lines, 2 files
Files
- shakers.cabal +1/−1
- src/Development/Shakers.hs +9/−0
shakers.cabal view
@@ -1,5 +1,5 @@ name: shakers-version: 0.0.10+version: 0.0.11 synopsis: Shake helpers. description: Primitive helpers for Shake files. homepage: https://github.com/swift-nav/shakers
src/Development/Shakers.hs view
@@ -46,6 +46,7 @@ , getHashedVersion , stackRules , cabalRules+ , dbRules , dockerRules , shakeMain ) where@@ -449,6 +450,14 @@ stack_ [ "sdist" ] stack_ [ "upload", ".", "--no-signature" ] +-- | Database rules+--+dbRules :: Rules ()+dbRules =+ -- | schema:apply+ --+ phony "schema:apply" $+ schemaApply_ [ "--dir", "schema/migrations" ] -- | Docker rules. --