-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* rename workspace project to avoid conflicts in IDEA (2x dio project) * add examples to melos * add .gitignore where missing
- Loading branch information
Showing
9 changed files
with
75 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Miscellaneous | ||
*.class | ||
*.log | ||
*.pyc | ||
*.swp | ||
.DS_Store | ||
.atom/ | ||
.buildlog/ | ||
.history | ||
.svn/ | ||
|
||
# IntelliJ related | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# The .vscode folder contains launch configuration and tasks you configure in | ||
# VS Code which you may wish to be included in version control, so this line | ||
# is commented out by default. | ||
#.vscode/ | ||
|
||
# Flutter/Dart/Pub related | ||
**/doc/api/ | ||
.dart_tool/ | ||
.flutter-plugins | ||
.packages | ||
.pub-cache/ | ||
.pub/ | ||
build/ | ||
pubspec_overrides.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
.pub-cache/ | ||
.pub/ | ||
/build/ | ||
pubspec_overrides.yaml | ||
|
||
# Web related | ||
lib/generated_plugin_registrant.dart | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
name: dio | ||
name: dio_workspace | ||
repository: https://github.com/cfug/dio | ||
|
||
packages: | ||
- dio | ||
- plugins/* | ||
- example* | ||
|
||
ide: | ||
intellij: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module type="WEB_MODULE" version="4"> | ||
<component name="NewModuleRootManager" inherit-compiler-output="true"> | ||
<exclude-output /> | ||
<content url="file://$MODULE_DIR$"> | ||
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" /> | ||
<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$/example/.dart_tool" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/.pub" /> | ||
<excludeFolder url="file://$MODULE_DIR$/example/build" /> | ||
<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$/plugins/cookie_manager/.dart_tool" /> | ||
<excludeFolder url="file://$MODULE_DIR$/plugins/cookie_manager/.pub" /> | ||
<excludeFolder url="file://$MODULE_DIR$/plugins/cookie_manager/build" /> | ||
<excludeFolder url="file://$MODULE_DIR$/plugins/http2_adapter/.dart_tool" /> | ||
<excludeFolder url="file://$MODULE_DIR$/plugins/http2_adapter/.pub" /> | ||
<excludeFolder url="file://$MODULE_DIR$/plugins/http2_adapter/build" /> | ||
</content> | ||
<orderEntry type="sourceFolder" forTests="false" /> | ||
<orderEntry type="library" name="Dart SDK" level="project" /> | ||
<orderEntry type="library" name="Dart Packages" level="project" /> | ||
</component> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters