Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix melos picking up example folders in random ignored folders #2073

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions dio_workspace.iml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@
<excludeFolder url="file://$MODULE_DIR$/example_flutter_app/.dart_tool" />
<excludeFolder url="file://$MODULE_DIR$/example_flutter_app/.pub" />
<excludeFolder url="file://$MODULE_DIR$/example_flutter_app/build" />
<excludeFolder url="file://$MODULE_DIR$/dio/.dart_tool" />
<excludeFolder url="file://$MODULE_DIR$/dio/.pub" />
<excludeFolder url="file://$MODULE_DIR$/dio/build" />
<excludeFolder url="file://$MODULE_DIR$/plugins/native_dio_adapter/.dart_tool" />
<excludeFolder url="file://$MODULE_DIR$/plugins/native_dio_adapter/.pub" />
<excludeFolder url="file://$MODULE_DIR$/plugins/native_dio_adapter/build" />
<excludeFolder url="file://$MODULE_DIR$/plugins/native_dio_adapter/example/.dart_tool" />
<excludeFolder url="file://$MODULE_DIR$/plugins/native_dio_adapter/example/.pub" />
<excludeFolder url="file://$MODULE_DIR$/plugins/native_dio_adapter/example/build" />
</content>
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Dart SDK" level="project" />
Expand Down
2 changes: 1 addition & 1 deletion melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ repository: https://github.com/cfug/dio
packages:
- 'dio'
- 'plugins/*'
- 'plugins/**/example*'
- 'example*'
- '**/example*'

ide:
intellij:
Expand Down