You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to compile an app that uses elm-graphql 1.0.0 with elm 0.19 and --optimize but it's not compiling as some of my Api.Object.* modules have Debug.toString calls in them.
That commit was changing out the uses of toString internally, but you're absolutely right, we should also switch out uses in the generated code so that users can compile their code using Debug.toString. I'll work on a fix today and push it out ASAP. Thanks!
Hello @obmarg, I've pushed a fix for this! You'll need to update to Elm package version 1.1.0 and NPM package version 1.0.1. Thanks again for reporting the issue!
I'm trying to compile an app that uses elm-graphql 1.0.0 with elm 0.19 and
--optimize
but it's not compiling as some of myApi.Object.*
modules have Debug.toString calls in them.I see that 3720d8d was meant to swap these out for the 0.19 equivalents, but if I look in
dist/bundle.js
I can still see the old Debug.toString implementation. Has something gone wrong with the release?The text was updated successfully, but these errors were encountered: