avh4 / elm-upgrade

Upgrade Elm projects
https://www.npmjs.com/package/elm-upgrade
MIT License
122 stars 15 forks source link

elm-upgrade checklist additions (elm/json, elm/url, elm/browser) #64

Open mordrax opened 6 years ago

mordrax commented 6 years ago

more to come as I work out Navigation: https://gist.github.com/mordrax/efcd34739ed56bb64d2b12d2401b7291

kuon commented 6 years ago
jhillyerd commented 5 years ago

In my recent run, this import was not updated:

import UrlParser as Url exposing ((</>), Parser, parseHash, s, string)

My upgrade failed due to websocket dependency, so I haven't tested, but I think it ought to be:

import Url exposing ((</>), Parser, parseHash, s, string)