Jonas Finnemann Jensen
Jonas Finnemann Jensen
> after we can filter out the Flutter-generated template files, that may not be in use, but left around in the package. Or we should punish that we a lower...
I think `-g|--global` would also be fine. It's short common and predictable. > npx will do a remote run if the package is not installed locally, I don't like that...
See also https://github.com/dart-lang/sdk/issues/58663
> `// exampleKey: ${file(..\/..\/bar.yml)}` Are you sure it's not double quoting it, as: `// exampleKey: "${file(..\/..\/bar.yml)}"` ------- On topic, I'm guessing we could make the strings prettier. Contributions are welcome,...
Feel free to up-vote, but I think the current set of features supports the uses cases the Dart team have for parsing configuration files. If you want advanced custom syntax,...
I think this could cool, maybe just adding comment at the end of line for keys in a map. But even this is really hard to express. What happens if...
Discussing this offline, it appears that while this could be a tiny improvement, it might not be worth the squeeze. What we really want is probably more like: ```yaml name:...
> I was referring to the fact that I think that depending on a vulnerable version should be avoided at all costs. I think **all costs** is too high 🤣...
You could also imagine a policy to forbid retracted package versions.
I'm not sure, you can do `pub upgrade` on a git-dependency, right? A workaround here, if `my_private_package` and root application is in the same repository is to use workspaces. --------------...