Gabriel Terwesten
Gabriel Terwesten
A related feature would be the ability to declare dependencies between scripts: ```yaml scripts: a: ... b: run: ... depends_on: - a ``` This would imply a dependency graph that...
Thanks for this contribution! Looks great, aside from the analyzer errors (just some style issue) and formatting. > Also, I didn't update the current melos.yaml config for this project, a...
Hey @ryanhanks, I've rebased the PR and added the use of `moduleNamePrefix` in all places where module names are built. For the run configurations, we should keep using the hard-coded...
This is not currently supported by Melos. But if you just want to add `dart_code_metrics` to all packages, you can use `melos exec`: ```shell melos exec -- dart pub add...
Melos only overrides dependencies on packages in the same workspace to path dependencies. But even if we had common dependencies as a feature, I don't think that resolving dependencies across...
Ah, ok. I guess one thing that could help is to regularly run `pub upgrade` in all packages. If the package is published to pub.dev it should not have `pubspec.lock`...
This looks like you have multiple Dart SDKs with different `.pub-cache` locations, where one cache contains the right version of melos, but somehow another is resolved at runtime. Could you...
We are using `Isolate.resolvePackageUri`. Not sure how that works internally, though. https://github.com/invertase/melos/blob/main/packages/melos/lib/src/common/utils.dart#L194-L199
The default location for `.pub_cache` is `$HOME`. So, if melos looks for files in `/root/.pub-cache`, that hints to an issue related to `sudo` or some other way that melos is...
Please try the following commands: ```bash dart pub global deactivate melos # Also clean the pub cache in case it is corrupted. dart pub cache clean dart pub global activate...