Since we are not going to have a very custom Prelude module, we can remove base-noprelude dependency and use mixins approach to specify custom prelude. But since we use other Relude module, this probably will look like this:
mixins: base hiding (Prelude)
, relude (Relude as Prelude, Relude.Extra.Bifunctor)
Since we are not going to have a very custom
Prelude
module, we can removebase-noprelude
dependency and usemixins
approach to specify custom prelude. But since we use otherRelude
module, this probably will look like this: