mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-24 12:22:27 +03:00
Use latest elm-codegen and fix type annotation in AddRoute example.
This commit is contained in:
parent
755d57e817
commit
65716ac34e
@ -38,7 +38,7 @@
|
|||||||
"elm-community/list-extra": "8.7.0",
|
"elm-community/list-extra": "8.7.0",
|
||||||
"jluckyiv/elm-utc-date-strings": "1.0.0",
|
"jluckyiv/elm-utc-date-strings": "1.0.0",
|
||||||
"justinmimbs/date": "4.0.1",
|
"justinmimbs/date": "4.0.1",
|
||||||
"mdgriffith/elm-codegen": "2.1.0",
|
"mdgriffith/elm-codegen": "3.0.0",
|
||||||
"mgold/elm-nonempty-list": "4.2.0",
|
"mgold/elm-nonempty-list": "4.2.0",
|
||||||
"miniBill/elm-codec": "2.0.0",
|
"miniBill/elm-codec": "2.0.0",
|
||||||
"noahzgordon/elm-color-extra": "1.0.2",
|
"noahzgordon/elm-color-extra": "1.0.2",
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
"dillonkearns/elm-bcp47-language-tag": "1.0.1",
|
"dillonkearns/elm-bcp47-language-tag": "1.0.1",
|
||||||
"dillonkearns/elm-cli-options-parser": "3.2.0",
|
"dillonkearns/elm-cli-options-parser": "3.2.0",
|
||||||
"dillonkearns/elm-date-or-date-time": "2.0.0",
|
"dillonkearns/elm-date-or-date-time": "2.0.0",
|
||||||
"dillonkearns/elm-markdown": "7.0.0",
|
"dillonkearns/elm-markdown": "7.0.1",
|
||||||
"elm/browser": "1.0.2",
|
"elm/browser": "1.0.2",
|
||||||
"elm/bytes": "1.0.8",
|
"elm/bytes": "1.0.8",
|
||||||
"elm/core": "1.0.5",
|
"elm/core": "1.0.5",
|
||||||
@ -28,11 +28,11 @@
|
|||||||
"elm/url": "1.0.0",
|
"elm/url": "1.0.0",
|
||||||
"elm/virtual-dom": "1.0.3",
|
"elm/virtual-dom": "1.0.3",
|
||||||
"elm-community/dict-extra": "2.4.0",
|
"elm-community/dict-extra": "2.4.0",
|
||||||
"elm-community/list-extra": "8.6.0",
|
"elm-community/list-extra": "8.7.0",
|
||||||
"jluckyiv/elm-utc-date-strings": "1.0.0",
|
"jluckyiv/elm-utc-date-strings": "1.0.0",
|
||||||
"justinmimbs/date": "4.0.1",
|
"justinmimbs/date": "4.0.1",
|
||||||
"matheus23/elm-default-tailwind-modules": "2.0.3",
|
"matheus23/elm-default-tailwind-modules": "2.0.3",
|
||||||
"mdgriffith/elm-codegen": "2.1.0",
|
"mdgriffith/elm-codegen": "3.0.0",
|
||||||
"miniBill/elm-codec": "2.0.0",
|
"miniBill/elm-codec": "2.0.0",
|
||||||
"noahzgordon/elm-color-extra": "1.0.2",
|
"noahzgordon/elm-color-extra": "1.0.2",
|
||||||
"pablohirafuji/elm-syntax-highlight": "3.4.1",
|
"pablohirafuji/elm-syntax-highlight": "3.4.1",
|
||||||
@ -43,7 +43,7 @@
|
|||||||
"the-sett/elm-pretty-printer": "3.0.0",
|
"the-sett/elm-pretty-printer": "3.0.0",
|
||||||
"the-sett/elm-syntax-dsl": "6.0.2",
|
"the-sett/elm-syntax-dsl": "6.0.2",
|
||||||
"tripokey/elm-fuzzy": "5.2.1",
|
"tripokey/elm-fuzzy": "5.2.1",
|
||||||
"turboMaCk/non-empty-list-alias": "1.3.0",
|
"turboMaCk/non-empty-list-alias": "1.3.1",
|
||||||
"vito/elm-ansi": "10.0.1",
|
"vito/elm-ansi": "10.0.1",
|
||||||
"zwilias/json-decode-exploration": "6.0.0"
|
"zwilias/json-decode-exploration": "6.0.0"
|
||||||
},
|
},
|
||||||
@ -56,7 +56,7 @@
|
|||||||
"elm-community/maybe-extra": "5.3.0",
|
"elm-community/maybe-extra": "5.3.0",
|
||||||
"fredcy/elm-parseint": "2.0.1",
|
"fredcy/elm-parseint": "2.0.1",
|
||||||
"mgold/elm-nonempty-list": "4.2.0",
|
"mgold/elm-nonempty-list": "4.2.0",
|
||||||
"miniBill/elm-unicode": "1.0.2",
|
"miniBill/elm-unicode": "1.0.3",
|
||||||
"rtfeldman/elm-hex": "1.0.0",
|
"rtfeldman/elm-hex": "1.0.0",
|
||||||
"stil4m/elm-syntax": "7.2.9",
|
"stil4m/elm-syntax": "7.2.9",
|
||||||
"stil4m/structured-writer": "1.0.3"
|
"stil4m/structured-writer": "1.0.3"
|
||||||
|
@ -245,6 +245,7 @@ errorsView :
|
|||||||
{ declaration : Elm.Declaration
|
{ declaration : Elm.Declaration
|
||||||
, call : Elm.Expression -> Elm.Expression -> Elm.Expression
|
, call : Elm.Expression -> Elm.Expression -> Elm.Expression
|
||||||
, callFrom : List String -> Elm.Expression -> Elm.Expression -> Elm.Expression
|
, callFrom : List String -> Elm.Expression -> Elm.Expression -> Elm.Expression
|
||||||
|
, value : List String -> Elm.Expression
|
||||||
}
|
}
|
||||||
errorsView =
|
errorsView =
|
||||||
Elm.Declare.fn2 "errorsView"
|
Elm.Declare.fn2 "errorsView"
|
||||||
|
Loading…
Reference in New Issue
Block a user