duplo 1.6.2 → 1.6.3
raw patch · 3 files changed
+7/−4 lines, 3 filesdep −alex
Dependencies removed: alex
Files
- README.md +2/−1
- duplo.cabal +1/−2
- src/Duplo.hs +4/−1
README.md view
@@ -17,7 +17,8 @@ If "cabal" sounds more familiar: -1. `cabal install duplo`+1. `cabal install alex`. This must run globally.+2. `cabal install duplo`. This can be run in a sandbox. ## Usage
duplo.cabal view
@@ -1,5 +1,5 @@ name: duplo-version: 1.6.2+version: 1.6.3 synopsis: Frontend development build tool description: Intuitive, simple building blocks for building composable, completely self-managed web applications license: MIT@@ -47,7 +47,6 @@ , warp == 3.0.* , ansi-terminal == 0.5.* , text-format == 0.3.*- , alex == 3.1.* hs-source-dirs : src/ default-language : Haskell2010 default-extensions : OverloadedStrings
src/Duplo.hs view
@@ -202,7 +202,10 @@ -- Start a local server _ <- forkIO $ serve port - let targetDirs = [devPath, appPath, depsPath]+ -- Only watch the dev and the app directories. We're not watching the+ -- dependency directory because it triggers a race condition with+ -- componentjs.+ let targetDirs = [devPath, appPath] -- Make sure we have these directories to watch mapM_ (createDirectoryIfMissing True) targetDirs -- Watch for file changes