[tools] Add update-release-info (#5643)

This commit is contained in:
stuartmorgan
2022-05-18 19:17:29 -04:00
committed by GitHub
parent ca9a81d653
commit dd2fc61b1c
10 changed files with 1238 additions and 40 deletions

View File

@ -29,6 +29,7 @@ import 'pubspec_check_command.dart';
import 'readme_check_command.dart';
import 'test_command.dart';
import 'update_excerpts_command.dart';
import 'update_release_info_command.dart';
import 'version_check_command.dart';
import 'xcode_analyze_command.dart';
@ -70,6 +71,7 @@ void main(List<String> args) {
..addCommand(ReadmeCheckCommand(packagesDir))
..addCommand(TestCommand(packagesDir))
..addCommand(UpdateExcerptsCommand(packagesDir))
..addCommand(UpdateReleaseInfoCommand(packagesDir))
..addCommand(VersionCheckCommand(packagesDir))
..addCommand(XcodeAnalyzeCommand(packagesDir));