Skip to content

Commit

Permalink
Update elm dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lattyware committed Nov 28, 2021
1 parent d60fb16 commit c5f1204
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 70 deletions.
19 changes: 12 additions & 7 deletions client/elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"direct": {
"NoRedInk/elm-json-decode-pipeline": "1.0.0",
"elm/browser": "1.0.2",
"elm/core": "1.0.4",
"elm/core": "1.0.5",
"elm/html": "1.0.0",
"elm/http": "2.0.0",
"elm/json": "1.1.3",
Expand All @@ -18,26 +18,31 @@
"elm/time": "1.0.0",
"elm/url": "1.0.0",
"elm-community/dict-extra": "2.4.0",
"elm-community/list-extra": "8.2.3",
"elm-community/random-extra": "3.1.0",
"elm-community/list-extra": "8.5.1",
"elm-community/random-extra": "3.2.0",
"fapian/elm-html-aria": "1.4.0",
"lattyware/elm-fontawesome": "4.0.0",
"lattyware/elm-fontawesome": "5.0.0",
"lattyware/elm-json-diff": "1.0.0",
"myrho/elm-round": "1.0.4",
"norpan/elm-html5-drag-drop": "3.1.4",
"norpan/elm-json-patch": "1.0.1",
"pablohirafuji/elm-qrcode": "3.1.1",
"pablohirafuji/elm-qrcode": "4.0.1",
"truqu/elm-base64": "2.0.4"
},
"indirect": {
"avh4/elm-color": "1.0.0",
"danfishgold/base64-bytes": "1.1.0",
"elm/bytes": "1.0.8",
"elm/file": "1.0.5",
"elm/virtual-dom": "1.0.2",
"owanturist/elm-union-find": "1.0.0"
"folkertdev/elm-flate": "2.0.5",
"justgook/elm-image": "4.0.0"
}
},
"test-dependencies": {
"direct": {},
"indirect": {}
"indirect": {
"owanturist/elm-union-find": "1.0.0"
}
}
}
87 changes: 29 additions & 58 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions client/src/elm/MassiveDecks/Pages/Lobby/Invite.elm
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ overlay shared gameCode =
qr : String -> Html msg
qr lobbyUrl =
lobbyUrl
|> QRCode.encodeWith QRCode.Low
|> Result.map QRCode.toSvg
|> QRCode.fromStringWith QRCode.Low
|> Result.map (QRCode.toSvg [])
|> Result.withDefault Html.nothing


Expand Down
4 changes: 2 additions & 2 deletions client/src/elm/MassiveDecks/Pages/Lobby/Spectate.elm
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ advertise shared gameCode =
let
qr =
Route.externalUrl shared.origin (Route.Start { section = Start.Join (Just gameCode) })
|> QRCode.encodeWith QRCode.Low
|> Result.map (\encoded -> [ QRCode.toSvg encoded ])
|> QRCode.fromStringWith QRCode.Low
|> Result.map (QRCode.toSvg [] >> List.singleton)
|> Result.withDefault []
in
[ Html.div [ HtmlA.class "join-info" ]
Expand Down
2 changes: 1 addition & 1 deletion server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c5f1204

Please sign in to comment.