diff options
author | Joris | 2017-05-10 10:29:30 +0200 |
---|---|---|
committer | Joris | 2017-05-10 10:29:30 +0200 |
commit | 4399097564c041838140225f30dcda7f92caa88a (patch) | |
tree | 9aa1176ac972cc138a530c3e785146ddaaf01056 /src | |
parent | 851b14df862eaeed3a8d783630f5e45ef22c5c7f (diff) |
Add tests for purescript number and parser utilities
Diffstat (limited to 'src')
-rw-r--r-- | src/Main.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Main.hs b/src/Main.hs index dd37fe4..40ed81e 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -14,14 +14,14 @@ main = hakyllWith configuration $ do route idRoute compile copyFileCompiler - match "design/*" $ do + match "design/**" $ do route $ customRoute $ const "main.css" compile $ do filePath <- getResourceFilePath unsafeCompiler (readProcess "runghc" [ filePath ] "") >>= makeItem - match "js/*" $ do + match "js/src/**" $ do route $ customRoute $ const "main.js" compile $ unsafeCompiler (readProcess "pulp" [ "build", "--optimise", "--src-path", "js" ] "") |