Questions tagged [melos]

8 questions
2
votes
0 answers

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 is a problem with profiles. I tried many ways of…
2
votes
0 answers

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.IllegalStateException: Exclude folder…
cheiser
  • 126
  • 1
  • 10
2
votes
1 answer

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 deep link to examples/foo/ that contains a demo app…
Francesco Iapicca
  • 2,618
  • 5
  • 40
  • 85
1
vote
2 answers

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 command "flutter pub get" instead of "fvm flutter pub…
SardorbekR
  • 1,388
  • 3
  • 18
  • 33
1
vote
2 answers

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, and Flutter Outline) are missing from both the…
hacker1024
  • 3,186
  • 1
  • 11
  • 31
0
votes
1 answer

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-repo I recently introduced melos. Now I have the…
luckyhandler
  • 10,651
  • 3
  • 47
  • 64
0
votes
0 answers

How do you stop changes in a private package from affecting other packages with Melos?

So I am try to consolidate a project to a monorepo using Melos and I'm trying to figure out how, if I'm working in one package and makes some changes, can the other packages remain protected and not break through versioning ideally. I am new to…
ZaRoch
  • 1
  • 3
0
votes
0 answers

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 packages to build that are next to each other, like…