diff --git a/docs/commands/bootstrap.mdx b/docs/commands/bootstrap.mdx index d0b162ac..aafe8a4e 100644 --- a/docs/commands/bootstrap.mdx +++ b/docs/commands/bootstrap.mdx @@ -97,7 +97,7 @@ project, just add the dependencies you wish to share between the packages to your bootstrap config in your `melos.yaml` file. If a dependency from `environment`, `dependencies` or `dev_dependencies` in -your `common_packages.yaml` exists in a package, the dependency version in this +your `melos.yaml` exists in a package, the dependency version in this package will be updated to match the version defined in your bootstrap config every time `melos bootstrap` is run. diff --git a/docs/index.mdx b/docs/index.mdx index 32745e7e..e97ef163 100644 --- a/docs/index.mdx +++ b/docs/index.mdx @@ -57,6 +57,7 @@ The following projects are using Melos: - [NetGlade/auto_mappr](https://github.com/netglade/auto_mappr) - [myConsciousness/atproto.dart](https://github.com/myConsciousness/atproto.dart) - [GrowERP Flutter ERP](https://github.com/growerp/growerp) +- [mrverdant13/coverde](https://github.com/mrverdant13/coverde) diff --git a/packages/melos/README.md b/packages/melos/README.md index 276d6a6c..3999c5da 100644 --- a/packages/melos/README.md +++ b/packages/melos/README.md @@ -140,6 +140,7 @@ The following projects are using Melos: - [NetGlade/auto_mappr](https://github.com/netglade/auto_mappr) - [myConsciousness/atproto.dart](https://github.com/myConsciousness/atproto.dart) - [GrowERP Flutter ERP](https://github.com/growerp/growerp) +- [mrverdant13/coverde](https://github.com/mrverdant13/coverde) > Submit a PR if you'd like to add your project to the list. Update the > [README.md](https://github.com/invertase/melos/edit/main/packages/melos/README.md) diff --git a/packages/melos/lib/src/common/intellij_project.dart b/packages/melos/lib/src/common/intellij_project.dart index a4f56724..b81aefb5 100644 --- a/packages/melos/lib/src/common/intellij_project.dart +++ b/packages/melos/lib/src/common/intellij_project.dart @@ -149,9 +149,11 @@ class IntellijProject { } String ideaModuleStringForName(String moduleName, {String? relativePath}) { - final imlPath = relativePath != null + var imlPath = relativePath != null ? p.normalize('$relativePath/$moduleName.iml') : '$moduleName.iml'; + // Use `/` instead of `\` no matter what platform is. + imlPath = imlPath.replaceAll(r'\', '/'); final module = '