~alcinnz/Mondrian

2cf52ad4a774ada190c70a57729f77973b6e34ab — Adrian Cochrane 1 year, 5 months ago aec2b62
Add scaffolding for CSS property parsing.
3 files changed, 2 insertions(+), 9 deletions(-)

M Mondrian.cabal
M app/Main.hs
D lib/MyLib.hs
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"