summaryrefslogtreecommitdiff
path: root/Biz/Namespace.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Biz/Namespace.hs')
-rw-r--r--Biz/Namespace.hs42
1 files changed, 28 insertions, 14 deletions
diff --git a/Biz/Namespace.hs b/Biz/Namespace.hs
index 8f5058e..aa69a9c 100644
--- a/Biz/Namespace.hs
+++ b/Biz/Namespace.hs
@@ -130,20 +130,34 @@ rePath = Regex.many (name <* Regex.string "/" <|> name)
reExt :: Regex.RE Char Ext
reExt =
- C <$ Regex.string "c"
- <|> Css <$ Regex.string "css"
- <|> Hs <$ Regex.string "hs"
- <|> Html <$ Regex.string "html"
- <|> Json <$ Regex.string "json"
- <|> Keys <$ Regex.string "pub"
- <|> Lisp <$ Regex.string "lisp"
- <|> Md <$ Regex.string "md"
- <|> Nix <$ Regex.string "nix"
- <|> Py <$ Regex.string "py"
- <|> Rs <$ Regex.string "rs"
- <|> Scm <$ Regex.string "scm"
- <|> Sh <$ Regex.string "sh"
- <|> Toml <$ Regex.string "toml"
+ C
+ <$ Regex.string "c"
+ <|> Css
+ <$ Regex.string "css"
+ <|> Hs
+ <$ Regex.string "hs"
+ <|> Html
+ <$ Regex.string "html"
+ <|> Json
+ <$ Regex.string "json"
+ <|> Keys
+ <$ Regex.string "pub"
+ <|> Lisp
+ <$ Regex.string "lisp"
+ <|> Md
+ <$ Regex.string "md"
+ <|> Nix
+ <$ Regex.string "nix"
+ <|> Py
+ <$ Regex.string "py"
+ <|> Rs
+ <$ Regex.string "rs"
+ <|> Scm
+ <$ Regex.string "scm"
+ <|> Sh
+ <$ Regex.string "sh"
+ <|> Toml
+ <$ Regex.string "toml"
-- | The cab dir is for temporary files and build outputs, not for source
-- inputs.