Closed jborean93 closed 4 months ago
Attention: Patch coverage is 97.35099%
with 4 lines
in your changes missing coverage. Please review.
Project coverage is 93.79%. Comparing base (
62ad75c
) to head (2d1067a
).
Files | Patch % | Lines |
---|---|---|
src/Yayaml.Module/ConvertToYaml.cs | 97.33% | 4 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Adds the new emitter logic to reduce the amount of processing done on each input object to YamlDotNet. This also paves the way for supporting comments or other complex scenarios not normally exposed through the Yaml* objects used before.
The ConvertTo-Yaml -Stream parameter can be used to serialize each input object as a YAML string as they are received rather than collecting until the end of the cmdlet call. This is useful if the cmdlet sending the input is long running and the caller wishes to output the objects immediately.