M Mondrian.cabal => Mondrian.cabal +2 -2
@@ 18,10 18,10 @@ build-type: Simple
extra-source-files: CHANGELOG.md
library
- exposed-modules: MyLib
+ exposed-modules: Graphics.Rendering.Rect.CSS
-- other-modules:
-- other-extensions:
- build-depends: base >=4.13 && <4.14
+ build-depends: base >=4.13 && <4.14, stylist-traits >= 0.1.2 && < 1
hs-source-dirs: lib
default-language: Haskell2010
M app/Main.hs => app/Main.hs +0 -3
@@ 1,8 1,5 @@
module Main where
-import qualified MyLib (someFunc)
-
main :: IO ()
main = do
putStrLn "Hello, Haskell!"
- MyLib.someFunc
D lib/MyLib.hs => lib/MyLib.hs +0 -4
@@ 1,4 0,0 @@
-module MyLib (someFunc) where
-
-someFunc :: IO ()
-someFunc = putStrLn "someFunc"