13 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
102
views
How can I avoid a bootstrap deadlock in a Melos project with a dynamically generated package?
I’m setting up a Flutter monorepo using Melos. Inside the repo:
A Flutter app (/apps/my_app)
A package that is generated by openapi-generator (/packages/my_api_client)
The problem:
My app depends ...
0
votes
0
answers
76
views
Understanding dart build_runner scripts AssetNotFoundException between packages when using melos
My question is about project configuration and generatting boilerplate code using build_runner: json_serializable, freezed. We are using melos.
The project is configured as a workspace. It has two ...
0
votes
1
answer
118
views
The proper way to share Flutter sdk versions in monorepo
I'm new to Flutter, but I'm working in a fairly large monorepo with melos, with 8 projects. Some are just rust crates that will generate a dart equivalent interface, but how do I specify specific ...
1
vote
0
answers
150
views
Can you share dependencies between flutter packages in Melos and how?
I want to manage the dependencies for two Flutter apps and a shared package within a Melos monorepo efficiently
I used this example I found in the Melos documentation:
# melos.yaml
# ...
command:
...
1
vote
1
answer
275
views
Property select-package is not allowed in melos.yaml
Problem
I found this issue when working on the step running test cases in specific packages on the melos starter project in this repo melos_demo for Manage multi-package Flutter projects. My flutter ...
0
votes
2
answers
267
views
How to debug the supabase_flutter repository and other melos based monorepos locally?
I'm trying to debug the supabase_flutter repository locally. Their is some functionality within the packages, that I can test best within an app I'm working on. Therefore I'm trying to use the local ...
4
votes
0
answers
592
views
Error (Xcode): No profiles for 'APP_ID' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'APP_ID'
we are using Flutter to build our iOS app using Github Actions. Build is done with Melos since we are using monorepo. We have no problem building our app on local machines, but in Github Actions there ...
0
votes
1
answer
482
views
Intellij Idea is not recognizing the dart project correctly since using melos
I upgraded my project to be based on a multi-package architecture a few weeks ago.
My primary pubspec.yaml contains path references to those feature or library packages.
To be able to manage this mono-...
2
votes
0
answers
375
views
Null check operator when running `melos bootstrap`
I have created a docker file to containerise my Dart application. It creates a main application image, install all the necessary packages and copies my project into the container.
I have three ...
6
votes
2
answers
5k
views
how to run "melos bootstrap" command with fvm
Currently on my computer installed Flutter version 3.3, but my project works on 2.5.3
So I'm using fvm for that, I've set up everything, but when I run melos bootstrap, I think it's just running ...
3
votes
3
answers
787
views
Why are the IntelliJ IDEA Flutter tool windows missing in my Melos project?
I have a Melos project containing both Flutter and non-Flutter Dart packages.
When running my Flutter app, it's apparent that the Flutter tool windows (such as Flutter Inspector, Flutter Performance, ...
2
votes
0
answers
73
views
Android Studio crashes when uses Melos
Flutter project. When AS tries to index project it is broken with exception below. It makes AS useless. It has started after installing Melos.
Dart Plugin - 213.7371
AS - 2021年3月1日
java.lang....
2
votes
1
answer
2k
views
how to ignore folders in melos packages
working in a monorepo with this structure
monorepo/
examples/
# ...
foo/
packages/
# ...
foo/
# ...
example/ -> examples/foo/
where the example in packages/foo
is a ...