put laantas-script library behind a single module
This commit is contained in:
parent
55b50ab440
commit
5ad7aeddc6
3 changed files with 8 additions and 8 deletions
|
@ -35,11 +35,8 @@ common base
|
|||
library
|
||||
import: base
|
||||
hs-source-dirs: lib
|
||||
exposed-modules:
|
||||
Svg,
|
||||
Glyphs,
|
||||
GlyphsBase,
|
||||
Split
|
||||
exposed-modules: Laantas
|
||||
other-modules: Svg, Glyphs, GlyphsBase, Split
|
||||
|
||||
executable laantas-script
|
||||
import: base
|
||||
|
|
5
laantas-script/lib/Laantas.hs
Normal file
5
laantas-script/lib/Laantas.hs
Normal file
|
@ -0,0 +1,5 @@
|
|||
module Laantas (module Laantas) where
|
||||
|
||||
import Split as Laantas
|
||||
import Svg as Laantas
|
||||
import Glyphs as Laantas
|
|
@ -1,7 +1,5 @@
|
|||
import Prelude hiding (getContents, readFile, writeFile, putStrLn)
|
||||
import Svg
|
||||
import Glyphs (doGlyphs, lineHeight')
|
||||
import Split
|
||||
import Laantas
|
||||
import Options.Applicative
|
||||
import Data.Functor
|
||||
import Data.Text.IO (readFile, getContents)
|
||||
|
|
Loading…
Add table
Reference in a new issue