shake-elm 0.2.0.0 → 0.2.0.1
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- shake-elm.cabal +1/−1
- src/Development/Shake/Elm.hs +2/−2
shake-elm.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: shake-elm-version: 0.2.0.0+version: 0.2.0.1 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2018 Vanessa McHale
src/Development/Shake/Elm.hs view
@@ -11,6 +11,6 @@ -> Rules () elmMake sources extras opt fp = fp %> \out -> do- need (sources ++ extras)+ need ("elm.json" : (sources ++ extras)) let go = if opt then ("--optimize":) else id- command [] "elm-make" (go ("--yes" : "--output" : out : "--warn" : sources))+ command [] "elm" ("make" : go ("--output" : out : sources))