We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, First thank you for the package. I have a specific issue while writing nested structure to yaml file. Here is the following template:
name: projectName packages: #- packages/*
I am using the following code:
final melos = SettingsYaml.load(pathToSettings: 'melos.yaml'); melos['name'] = name; melos['packages'] = <String, String>{ 'packages': '/*' }; melos.save();
But I am getting the following output:
# SettingsYaml settings file name: "mppm" packages: {packages: /*}
The text was updated successfully, but these errors were encountered:
Your code looks fine so not certain what is going wrong.
I'm not going to have time to look at this in the next month or so.
Of you are able to submit a PR I would publish they fixed code.
Sorry, something went wrong.
No branches or pull requests
Hi, First thank you for the package. I have a specific issue while writing nested structure to yaml file. Here is the following template:
I am using the following code:
But I am getting the following output:
The text was updated successfully, but these errors were encountered: