dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
442 B
24 lines
442 B
1 year ago
|
#!/bin/bash
|
||
|
|
||
|
# Run Flutter analyze
|
||
|
echo "Running 'flutter analyze'..."
|
||
|
flutter analyze
|
||
|
|
||
|
# Run Flutter test
|
||
|
echo "Running 'flutter test'..."
|
||
|
flutter test
|
||
|
|
||
|
# Check if package is ready for publishing
|
||
|
echo "Running 'flutter pub publish --dry-run'..."
|
||
|
flutter pub publish --dry-run
|
||
|
|
||
|
# Apply Dart fixes
|
||
|
echo "Running 'dart fix --apply'..."
|
||
|
dart fix --apply
|
||
|
|
||
|
# Format Dart code
|
||
|
echo "Running 'dart format .'"
|
||
|
dart format .
|
||
|
|
||
|
echo "Script completed."
|