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
|
library
|
||||||
import: base
|
import: base
|
||||||
hs-source-dirs: lib
|
hs-source-dirs: lib
|
||||||
exposed-modules:
|
exposed-modules: Laantas
|
||||||
Svg,
|
other-modules: Svg, Glyphs, GlyphsBase, Split
|
||||||
Glyphs,
|
|
||||||
GlyphsBase,
|
|
||||||
Split
|
|
||||||
|
|
||||||
executable laantas-script
|
executable laantas-script
|
||||||
import: base
|
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 Prelude hiding (getContents, readFile, writeFile, putStrLn)
|
||||||
import Svg
|
import Laantas
|
||||||
import Glyphs (doGlyphs, lineHeight')
|
|
||||||
import Split
|
|
||||||
import Options.Applicative
|
import Options.Applicative
|
||||||
import Data.Functor
|
import Data.Functor
|
||||||
import Data.Text.IO (readFile, getContents)
|
import Data.Text.IO (readFile, getContents)
|
||||||
|
|
Loading…
Add table
Reference in a new issue