[flutter_plugin_tools] Adds update-excerpts command (#5339)

This commit is contained in:
stuartmorgan
2022-04-28 12:34:11 -04:00
committed by GitHub
parent 88829b67ac
commit 4cecb9b264
9 changed files with 604 additions and 6 deletions

View File

@ -28,6 +28,7 @@ import 'publish_plugin_command.dart';
import 'pubspec_check_command.dart';
import 'readme_check_command.dart';
import 'test_command.dart';
import 'update_excerpts_command.dart';
import 'version_check_command.dart';
import 'xcode_analyze_command.dart';
@ -68,6 +69,7 @@ void main(List<String> args) {
..addCommand(PubspecCheckCommand(packagesDir))
..addCommand(ReadmeCheckCommand(packagesDir))
..addCommand(TestCommand(packagesDir))
..addCommand(UpdateExcerptsCommand(packagesDir))
..addCommand(VersionCheckCommand(packagesDir))
..addCommand(XcodeAnalyzeCommand(packagesDir));