Skip to content

Commit ec9661d

Browse files
committed
expose only the things needed, add elm-html as a dep
1 parent e825047 commit ec9661d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

elm-package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0",
2+
"version": "1.1.0",
33
"summary": "CSS Preprocessor for Elm",
44
"repository": "https://github.com/rtfeldman/elm-css.git",
55
"license": "BSD-3-Clause",
@@ -10,11 +10,11 @@
1010
"Css",
1111
"Css.Elements",
1212
"Css.File",
13-
"Css.Namespace",
1413
"Html.CssHelpers"
1514
],
1615
"dependencies": {
17-
"elm-lang/core": "2.0.0 <= v < 4.0.0"
16+
"elm-lang/core": "2.0.0 <= v < 4.0.0",
17+
"evancz/elm-html": "4.0.2 <= v < 5.0.0"
1818
},
1919
"elm-version": "0.15.0 <= v < 0.17.0"
20-
}
20+
}

src/Html/CssHelpers.elm

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ module Html.CssHelpers (namespace) where
44
55
@docs namespace
66
-}
7-
87
import Css.Helpers exposing (toCssIdentifier, identifierToString)
98
import Html exposing (Attribute)
109
import Html.Attributes as Attr

test/elm-package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"NoRedInk/elm-shrink": "1.0.0 <= v < 2.0.0",
1515
"deadfoxygrandpa/elm-test": "3.0.1 <= v < 4.0.0",
1616
"elm-lang/core": "2.1.0 <= v < 3.0.0",
17-
"laszlopandy/elm-console": "1.0.3 <= v < 2.0.0"
17+
"laszlopandy/elm-console": "1.0.3 <= v < 2.0.0",
18+
"evancz/elm-html": "4.0.2 <= v < 5.0.0"
1819
},
1920
"elm-version": "0.16.0 <= v < 0.17.0"
2021
}

0 commit comments

Comments
 (0)