Published yaml_edit version 2.0.0 - Migrated to null-safety. - API will no-longer return `null` in-place of a `YamlNode`, instead a `YamlNode` with `YamlNode.value == null` should be used. These are easily created with `wrapAsYamlNode(null)`.
Prepare yaml_edit version 2.0.0 (#126)
A library for YAML manipulation while preserving comments.
Disclaimer: This is not an officially supported Google product.
A simple usage example:
import 'package:yaml_edit/yaml_edit.dart'; void main() { final yamlEditor = YamlEditor('{YAML: YAML}'); yamlEditor.assign(['YAML'], "YAML Ain't Markup Language"); print(yamlEditor); // Expected output: // {YAML: YAML Ain't Markup Language} }
Testing is done in two strategies: Unit testing (/test/editor_test.dart) and Golden testing (/test/golden_test.dart). More information on Golden testing and the input/output format can be found at /test/testdata/README.md.
These tests are automatically run with pub run test.