forked from bytedance/flutter_ume
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
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,4 @@ | ||
# melos_managed_dependency_overrides: flutter_ume | ||
dependency_overrides: | ||
flutter_ume: | ||
path: .. |
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,19 @@ | ||
# melos_managed_dependency_overrides: vm_service,flutter_ume,flutter_ume_kit_channel_monitor,flutter_ume_kit_console,flutter_ume_kit_device,flutter_ume_kit_dio,flutter_ume_kit_perf,flutter_ume_kit_show_code,flutter_ume_kit_ui | ||
dependency_overrides: | ||
vm_service: ^9.4.0 | ||
flutter_ume: | ||
path: ../ | ||
flutter_ume_kit_channel_monitor: | ||
path: ../kits/flutter_ume_kit_channel_monitor | ||
flutter_ume_kit_console: | ||
path: ../kits/flutter_ume_kit_console | ||
flutter_ume_kit_device: | ||
path: ../kits/flutter_ume_kit_device | ||
flutter_ume_kit_dio: | ||
path: ../kits/flutter_ume_kit_dio | ||
flutter_ume_kit_perf: | ||
path: ../kits/flutter_ume_kit_perf | ||
flutter_ume_kit_show_code: | ||
path: ../kits/flutter_ume_kit_show_code | ||
flutter_ume_kit_ui: | ||
path: ../kits/flutter_ume_kit_ui |
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,4 @@ | ||
# melos_managed_dependency_overrides: flutter_ume | ||
dependency_overrides: | ||
flutter_ume: | ||
path: ../.. |
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,4 @@ | ||
# melos_managed_dependency_overrides: flutter_ume | ||
dependency_overrides: | ||
flutter_ume: | ||
path: ../.. |
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,4 @@ | ||
# melos_managed_dependency_overrides: flutter_ume | ||
dependency_overrides: | ||
flutter_ume: | ||
path: ../.. |
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,4 @@ | ||
# melos_managed_dependency_overrides: flutter_ume | ||
dependency_overrides: | ||
flutter_ume: | ||
path: ../.. |
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,4 @@ | ||
# melos_managed_dependency_overrides: flutter_ume | ||
dependency_overrides: | ||
flutter_ume: | ||
path: ../.. |
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,4 @@ | ||
# melos_managed_dependency_overrides: flutter_ume | ||
dependency_overrides: | ||
flutter_ume: | ||
path: ../.. |
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,4 @@ | ||
# melos_managed_dependency_overrides: flutter_ume | ||
dependency_overrides: | ||
flutter_ume: | ||
path: ../.. |
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,44 @@ | ||
name: byte_live_demo | ||
|
||
packages: | ||
- kits/flutter_ume_kit_* | ||
- example | ||
- custom_plugin_example | ||
- . | ||
|
||
command: | ||
bootstrap: | ||
usePubspecOverrides: true | ||
runPubGetInParallel: false | ||
|
||
scripts: | ||
run:demo: | ||
run: | | ||
melos exec -c 6 --fail-fast -- \ | ||
"flutter run" | ||
description: Run demo app. | ||
select-package: | ||
scope: | ||
- 'example' | ||
|
||
build:example_android: | ||
run: | | ||
melos exec -c 6 --fail-fast -- \ | ||
"flutter build apk --no-pub" | ||
description: Build a specific example app for Android. | ||
select-package: | ||
dir-exists: | ||
- android | ||
scope: | ||
- 'example' | ||
|
||
build:example_ios: | ||
run: | | ||
melos exec -c 6 --fail-fast -- \ | ||
"flutter build ios --no-codesign --no-pub" | ||
description: Build a specific example app for iOS. | ||
select-package: | ||
dir-exists: | ||
- ios | ||
scope: | ||
- 'example' |