mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
97030f8cb4
- ⚠️ Depends on #2644 The `effectful` library does not support the `Embed` effect out of the box. However, it offers `IOE`, which is equivalent to `Embed IO` from polysemy. In preparation to a possible migration to `effectful`, this pr hides the general `Embed` effect from the prelude and it exports a specialized `EmbedIO` in its place.
9 lines
337 B
Haskell
9 lines
337 B
Haskell
module Commands.Dependencies.Update where
|
|
|
|
import Commands.Base
|
|
import Juvix.Compiler.Pipeline.Loader.PathResolver
|
|
import Juvix.Compiler.Pipeline.Setup
|
|
|
|
runCommand :: (Members '[EmbedIO, TaggedLock, App] r) => Sem r ()
|
|
runCommand = runPipelineSetup (entrySetup (set dependenciesConfigForceUpdateLockfile True defaultDependenciesConfig))
|