Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions examples/FileSystemEvent.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,8 @@ import qualified Data.List.NonEmpty as NonEmpty
import qualified Streamly.Data.Fold as Fold
import qualified Streamly.Data.Stream as Stream
import qualified Streamly.FileSystem.Path as Path

#if darwin_HOST_OS
import qualified Streamly.Internal.FS.Event.Darwin as Event
#elif linux_HOST_OS
import qualified Streamly.Internal.FS.Event.Linux as Event
#elif mingw32_HOST_OS
import qualified Streamly.Internal.FS.Event.Windows as Event
#else
#error "FS Events not supported on this platform"
#endif
import qualified Streamly.FileSystem.Event as Event
import qualified Streamly.Internal.FS.Event as Event (showEvent)

-------------------------------------------------------------------------------
-- Main
Expand Down
16 changes: 9 additions & 7 deletions stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@ resolver: lts-22.43
packages:
- '.'
extra-deps:
#- streamly-core-0.2.0
#- streamly-0.10.0
#- fusion-plugin-0.2.6
- fusion-plugin-0.2.7
#- streamly-core-0.3.0
#- streamly-0.11.0
- streamly-fsevents-0.1.0

- git: https://github.com/composewell/streamly
commit: c7048326486e537908f9e6b7529f0d783014b7d9
commit: 9f256bfa7c441451b46fec02fa0510383643db09
- git: https://github.com/composewell/streamly
commit: c7048326486e537908f9e6b7529f0d783014b7d9
commit: 9f256bfa7c441451b46fec02fa0510383643db09
subdirs:
- core
- git: https://github.com/composewell/streamly-fsevents
commit: 7c06c187f0437e6857108c89fe74dc7cc53a0bac
#- git: https://github.com/composewell/streamly-fsevents
# commit: 7c06c187f0437e6857108c89fe74dc7cc53a0bac

rebuild-ghc-options: true

Expand Down