chore(scripts): add todos to refactor the sh scripts to dart from sh to allow windows developers use them easily without git bash or something else

pull/1904/head
Ellet 10 months ago
parent 22d26cb8a0
commit 20429a8533
  1. 10
      scripts/before_push.sh
  2. 2
      scripts/disable_local_dev.sh
  3. 2
      scripts/enable_local_dev.sh
  4. 3
      scripts/pub_get.sh
  5. 2
      scripts/regenerate_translations.sh

@ -1,5 +1,9 @@
#!/bin/bash
# The script must be run from the root project folder and not inside the scripts
# TODO: Refactor this to a dart script to allow developers who use Windows to use it
# Run Flutter analyze
echo "Running 'flutter analyze'..."
flutter analyze
@ -30,4 +34,10 @@ echo "Running flutter build web --release --dart-define=CI=true."
echo ""
# Check the translations
echo "Running dart ./scripts/ensure_translations_correct.dart"
(dart ./scripts/ensure_translations_correct.dart)
echo ""
echo "Script completed."

@ -2,6 +2,8 @@
# Please make sure to run this script in the root directory of the repository and not inside sub-folders
# TODO: Refactor this to a dart script to allow developers who use Windows to use it
echo ""
echo "Disable local development for flutter_quill..."

@ -2,6 +2,8 @@
# Please make sure to run this script in the root directory of the repository and not inside sub-folders
# TODO: Refactor this to a dart script to allow developers who use Windows to use it
echo ""
echo "Enable local development for flutter_quill..."

@ -1,4 +1,7 @@
#!/usr/bin/env bash
# TODO: Refactor this to a dart script to allow developers who use Windows to use it
flutter pub get
(cd dart_quill_delta && flutter pub get)
(cd flutter_quill_extensions && flutter pub get)

@ -4,6 +4,8 @@
# ./scripts/regenerate_translations.sh
# otherwise the script could delete the wrong folder in rare cases
# TODO: Refactor this to a dart script to allow developers who use Windows to use it
echo ""
echo "Delete the current generated localizations..."

Loading…
Cancel
Save