mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
243f80b6d5
* chore: remove use of svgWidget() * refactor: redundant code in svg * feat: add generator to generate flowy_svgs.g.dart * chore: reference new package in pubspec * chore: remove svg widget from flowy_infra * refactor: update usage in flowy_infra_ui * refactor: usage in appflowy_flutter * fix: error with script not running * fix: error with script not running * fix: use unix style file path * feat: use generation script for flowy svgs * feat: add task * fix: add required missing semicolon * fix: rebase errors * feat: update generate build script * fix: solve duplicate entries in the generated file * fix: compilation errors * fix: replace all spaces with an underscore * feat: use FlowySvgs * feat: reduce assets and simplify * refactor: do not return empty svg widget * fix: rebase errors * fix: analyzer warnings * chore: remove flowy_icons from tracking * chore: fix generate flowy icons script linux * chore: macos/linux script * chore: add rsync --------- Co-authored-by: Mathias Mogensen <mathiasrieckm@gmail.com> Co-authored-by: Mathias Mogensen <mathias@appflowy.io>
46 lines
1.1 KiB
Batchfile
46 lines
1.1 KiB
Batchfile
@echo off
|
|
|
|
REM Store the current working directory
|
|
set "original_dir=%CD%"
|
|
|
|
REM Change the current working directory to the script's location
|
|
cd /d "%~dp0"
|
|
|
|
REM Call the script in the 'language_files' folder
|
|
echo Generating files using easy_localization
|
|
cd language_files
|
|
REM Allow execution permissions on CI
|
|
chmod +x generate_language_files.cmd
|
|
call generate_language_files.cmd %*
|
|
|
|
REM Return to the main script directory
|
|
cd ..
|
|
|
|
REM Call the script in the 'freezed' folder
|
|
echo Generating files using build_runner
|
|
cd freezed
|
|
REM Allow execution permissions on CI
|
|
chmod +x generate_freezed.cmd
|
|
call generate_freezed.cmd %*
|
|
|
|
REM Return to the main script directory
|
|
cd ..
|
|
|
|
echo Generating env files using build_runner
|
|
cd env
|
|
REM Allow execution permissions on CI
|
|
chmod +x generate_env.cmd
|
|
call generate_env.cmd %*
|
|
|
|
REM Return to the main script directory
|
|
cd ..
|
|
|
|
echo Generating svg files using flowy_svg
|
|
cd flowy_icons
|
|
REM Allow execution permissions on CI
|
|
chmod +x generate_flowy_icons.cmd
|
|
call generate_flowy_icons.cmd %*
|
|
|
|
REM Return to the original directory
|
|
cd /d "%original_dir%"
|