feat:IInline math equation (#2949)

This commit is contained in:
Lucas.Xu
2023-07-09 10:03:22 +07:00
committed by GitHub
parent 4c17298432
commit ff9b3c56c5
43 changed files with 500 additions and 120 deletions

View File

@ -167,7 +167,6 @@ script = [
[tasks.flutter-build]
script = ["""
cd appflowy_flutter/
flutter clean
flutter pub get
flutter build ${TARGET_OS} --${BUILD_FLAG}
"""]
@ -176,7 +175,6 @@ script_runner = "@shell"
[tasks.flutter-build.windows]
script = ["""
cd appflowy_flutter
exec cmd.exe /c flutter clean
exec cmd.exe /c flutter pub get
exec cmd.exe /c flutter build ${TARGET_OS} --${BUILD_FLAG} --build-name=${APP_VERSION}
"""]
@ -186,16 +184,15 @@ script_runner = "@duckscript"
script_runner = "@shell"
script = [
"""
chmod +x scripts/code_generation/generate.sh
""",
"scripts/code_generation/generate.sh"
sh scripts/code_generation/generate.sh
"""
]
[tasks.code_generation.windows]
script_runner = "@duckscript"
script = [
"""
exec "scripts/code_generation/generate.cmd"
exec scripts/code_generation/generate.cmd
""",
]