blob: d07992b4a11f1fff2c00801d74f66a17b3ae57b2 [file] [log] [blame]
cue vet schema.cue json: foo.data
! stderr .
cue export schema.cue json: foo.data
cmp stdout export-stdout
-- schema.cue --
[string]: string
-- foo.data --
{ "a": "b" }
{ "c": "d" }
-- export-stdout --
{
"a": "b",
"c": "d"
}