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
This is the key differentiator from YAML. Composed types encapsulate multiple low-level tasks behind a simplified interface. They use a `_tasks` field (hidden in CUE output) that decomposes into a flat task list.
3464
+
This is the key differentiator from YAML. Composed types encapsulate multiple low-level tasks behind a simplified interface. They use a `tasks` field (hidden in CUE output) that decomposes into a flat task list.
fmt.Printf("Schema installed at %s (%d file(s), version %s)\n", status.Path, status.Files, status.Version)
2805
+
fmt.Printf("Composed types installed at %s (%d file(s), version %s)\n", status.ComposedPath, status.ComposedFiles, status.Version)
2804
2806
returnnil
2805
2807
}
2806
2808
ifstatus.Version=="" {
2807
2809
fmt.Printf("Schema installed at %s (%d file(s), version unknown; current %s)\n", status.Path, status.Files, status.Current)
2810
+
fmt.Printf("Composed types installed at %s (%d file(s), version unknown; current %s)\n", status.ComposedPath, status.ComposedFiles, status.Current)
2808
2811
returnnil
2809
2812
}
2810
2813
fmt.Printf("Schema installed at %s (%d file(s), version %s; current %s)\n", status.Path, status.Files, status.Version, status.Current)
2814
+
fmt.Printf("Composed types installed at %s (%d file(s), version %s; current %s)\n", status.ComposedPath, status.ComposedFiles, status.Version, status.Current)
2811
2815
returnnil
2812
2816
}
2813
2817
fmt.Printf("Schema not installed (expected at %s, current %s)\n", status.Path, status.Current)
2818
+
fmt.Printf("Composed types not installed (expected at %s, current %s)\n", status.ComposedPath, status.Current)
0 commit comments