~alcinnz/haskell-stylist

5f4c8cd6b007083b5215758c05b782e8d1c2c33b — Adrian Cochrane 5 years ago a0d464b
Aid attribute sorting, fix install of internal modules.
2 files changed, 5 insertions(+), 3 deletions(-)

M src/Data/CSS/Style/Common.hs
M stylish-haskell.cabal
M src/Data/CSS/Style/Common.hs => src/Data/CSS/Style/Common.hs +1 -1
@@ 16,7 16,7 @@ data Element = ElementNode {
    name :: Text,
    attributes :: [Attribute] -- in sorted order.
}
data Attribute = Attribute Text String
data Attribute = Attribute Text String deriving (Eq, Ord)

class RuleStore a where
    new :: a

M stylish-haskell.cabal => stylish-haskell.cabal +4 -2
@@ 10,7 10,7 @@ name:                stylish-haskell
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.1.0
version:             0.2.0

-- A short (one-line) description of the package.
synopsis:            Apply CSS styles to a document tree.


@@ 51,7 51,9 @@ library
  exposed-modules:     Data.CSS.Syntax.StyleSheet, Data.CSS.Syntax.Selector, Data.CSS.Style
  
  -- Modules included in this library but not exported.
  -- other-modules:       
  other-modules:       Data.CSS.Syntax.StylishUtil,
                       Data.CSS.Style.Importance, Data.CSS.Style.Common,
                       Data.CSS.Style.Selector.Index, Data.CSS.Style.Selector.Interpret, Data.CSS.Style.Selector.Specificity
  
  -- LANGUAGE extensions used by modules in this package.
  -- other-extensions: