mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-26 13:21:42 +03:00
Remove module contract requirement for View.placeholder since it is obsolete now with new scaffolding.
This commit is contained in:
parent
2d7f1961e3
commit
459f6df9de
@ -1,4 +1,4 @@
|
||||
module View exposing (View, map, placeholder)
|
||||
module View exposing (View, map)
|
||||
|
||||
{-|
|
||||
|
||||
@ -22,11 +22,3 @@ map fn doc =
|
||||
{ title = doc.title
|
||||
, body = List.map (Html.map fn) doc.body
|
||||
}
|
||||
|
||||
|
||||
{-| -}
|
||||
placeholder : String -> View msg
|
||||
placeholder moduleName =
|
||||
{ title = "Placeholder - " ++ moduleName
|
||||
, body = [ Html.text moduleName ]
|
||||
}
|
||||
|
@ -130,7 +130,7 @@ coreModulesAndExports =
|
||||
, ( [ "ErrorPage" ], [ "ErrorPage", "notFound", "internalError", "view", "statusCode", "head" ] )
|
||||
, ( [ "Shared" ], [ "Data", "Model", "Msg", "template" ] )
|
||||
, ( [ "Site" ], [ "config" ] )
|
||||
, ( [ "View" ], [ "View", "map", "placeholder" ] )
|
||||
, ( [ "View" ], [ "View", "map" ] )
|
||||
]
|
||||
|
||||
|
||||
|
@ -292,7 +292,7 @@ invalid = Debug.todo ""
|
||||
, [ Review.Test.error
|
||||
{ message = "A core elm-pages module needs to expose something"
|
||||
, details =
|
||||
[ "The View module must expose `View`, `map`, `placeholder`"
|
||||
[ "The View module must expose `View`, `map`"
|
||||
]
|
||||
, under = "exposing (invalid)"
|
||||
}
|
||||
@ -325,7 +325,7 @@ routes = Debug.todo ""
|
||||
, """module Site exposing (config)
|
||||
routes = Debug.todo ""
|
||||
"""
|
||||
, """module View exposing (View, map, placeholder)
|
||||
, """module View exposing (View, map)
|
||||
routes = Debug.todo ""
|
||||
"""
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user