blob: b6a36171e6014cf53a29903bf9c081973a679a57 [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"
}