Skip to content

Commit

Permalink
expose only the things needed, add elm-html as a dep
Browse files Browse the repository at this point in the history
  • Loading branch information
eeue56 committed Mar 11, 2016
1 parent e825047 commit ec9661d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions elm-package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0",
"version": "1.1.0",
"summary": "CSS Preprocessor for Elm",
"repository": "https://github.com/rtfeldman/elm-css.git",
"license": "BSD-3-Clause",
Expand All @@ -10,11 +10,11 @@
"Css",
"Css.Elements",
"Css.File",
"Css.Namespace",
"Html.CssHelpers"
],
"dependencies": {
"elm-lang/core": "2.0.0 <= v < 4.0.0"
"elm-lang/core": "2.0.0 <= v < 4.0.0",
"evancz/elm-html": "4.0.2 <= v < 5.0.0"
},
"elm-version": "0.15.0 <= v < 0.17.0"
}
}
1 change: 0 additions & 1 deletion src/Html/CssHelpers.elm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Html.CssHelpers (namespace) where
@docs namespace
-}

import Css.Helpers exposing (toCssIdentifier, identifierToString)
import Html exposing (Attribute)
import Html.Attributes as Attr
Expand Down
3 changes: 2 additions & 1 deletion test/elm-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"NoRedInk/elm-shrink": "1.0.0 <= v < 2.0.0",
"deadfoxygrandpa/elm-test": "3.0.1 <= v < 4.0.0",
"elm-lang/core": "2.1.0 <= v < 3.0.0",
"laszlopandy/elm-console": "1.0.3 <= v < 2.0.0"
"laszlopandy/elm-console": "1.0.3 <= v < 2.0.0",
"evancz/elm-html": "4.0.2 <= v < 5.0.0"
},
"elm-version": "0.16.0 <= v < 0.17.0"
}

0 comments on commit ec9661d

Please sign in to comment.