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
Although I like the idea of writing json schema's in elm, I worry the actual of having to compile the schema before being able to load it into <insert tool here> will discourage it's use.
To that end it would be cool if we'd have a tool that you can use to edit any json schema as an elm json schema. That would work something likethis:
run edit-elm-json-schema my-schema.json
parse the json schema to an elm json schema and save the result up in a temporary directory.
install some dependencies in the temporary directory to ensure elm-make works.
open the file in the users editor of choice.
user edits the elm code.
upon saving compile the elm json schema to regular json and store that over the original file.
The text was updated successfully, but these errors were encountered:
Although I like the idea of writing json schema's in elm, I worry the actual of having to compile the schema before being able to load it into
<insert tool here>
will discourage it's use.To that end it would be cool if we'd have a tool that you can use to edit any json schema as an elm json schema. That would work something likethis:
edit-elm-json-schema my-schema.json
The text was updated successfully, but these errors were encountered: