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.
49 lines
1.0 KiB
49 lines
1.0 KiB
// ignore_for_file: avoid_print |
|
|
|
import 'dart:io'; |
|
|
|
void main() async { |
|
await runCommand('flutter', ['analyze']); |
|
|
|
await runCommand('flutter', ['test']); |
|
|
|
await runCommand('flutter', ['pub', 'publish', '--dry-run']); |
|
|
|
await runCommand('dart', ['fix', '--apply']); |
|
|
|
await runCommand('dart', ['format', '.']); |
|
|
|
await runCommand('dart', ['format', '--set-exit-if-changed', '.']); |
|
|
|
await runCommand( |
|
'flutter', |
|
[ |
|
'build', |
|
'web', |
|
'--release', |
|
'--dart-define=CI=true', |
|
], |
|
workingDirectory: 'example', |
|
); |
|
|
|
print(''); |
|
|
|
await runCommand('dart', ['./scripts/ensure_translations_correct.dart']); |
|
|
|
print(''); |
|
|
|
print('Checks completed.'); |
|
} |
|
|
|
Future<void> runCommand( |
|
String executable, |
|
List<String> arguments, { |
|
String? workingDirectory, |
|
}) async { |
|
print( |
|
"Running '$executable ${arguments.join(' ')}' in directory '${workingDirectory ?? 'root'}'..."); |
|
final result = await Process.run(executable, arguments, |
|
workingDirectory: workingDirectory); |
|
print(result.stdout); |
|
print(result.stderr); |
|
}
|
|
|