Jonathan Böcker
Results
11
issues of
Jonathan Böcker
When updating a string value with forward slashes, the resulting string escapes the forward slashes unnecessarily: ```dart final doc = YamlEditor('exampleKey: \${file(../../bar.yml)}'); doc.update(['exampleKey'], '\${file(../../foo.yml)}'); print(doc); // exampleKey: ${file(..\/..\/bar.yml)} ``` My...
type-enhancement
package:yaml_edit