packages feed

FilePather 0.1.8 → 0.2.0

raw patch · 2 files changed

+11/−2 lines, 2 filesdep ~data-lens

Dependency ranges changed: data-lens

Files

FilePather.cabal view
@@ -1,5 +1,5 @@ Name:               FilePather-Version:            0.1.8+Version:            0.2.0 Author:             Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ> Maintainer:         Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ> Copyright:          Tony Morris@@ -24,7 +24,7 @@                     mtl >= 2,                     comonad >= 1.1,                     transformers >= 0.2,-                    data-lens >= 4,+                    data-lens >= 2.9,                     comonad-transformers >= 2    GHC-Options:
src/System/FilePath/FilePather/Find.hs view
@@ -180,6 +180,15 @@ findpi =   findp +-- | The results of a path find. One of+--+-- * `found` with the file path name and file type.+--+-- * `drop` with the file path name and file type.+--+-- * `recurse` with the file path (the file type is always directory).+--+-- * `no-recurse` with the file path (the file type is always directory). data FindR =   Found FilePath FileType   | Drop FilePath FileType