mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
26 lines
442 B
TOML
26 lines
442 B
TOML
|
[tasks.freeze_setup]
|
||
|
script = [
|
||
|
"""
|
||
|
flutter clean
|
||
|
flutter pub get
|
||
|
flutter pub run build_runner build --delete-conflicting-outputs
|
||
|
""",
|
||
|
]
|
||
|
script_runner = "@shell"
|
||
|
|
||
|
[tasks.freeze_watch]
|
||
|
script = [
|
||
|
"""
|
||
|
flutter pub run build_runner watch
|
||
|
""",
|
||
|
]
|
||
|
script_runner = "@shell"
|
||
|
|
||
|
[tasks.add_platform]
|
||
|
description = "Add platform support"
|
||
|
script = ["""
|
||
|
flutter create --template=plugin --platforms=${@} .
|
||
|
"""]
|
||
|
script_runner = "@shell"
|
||
|
|