incrementAllMinor method

Future<void> incrementAllMinor()

Implementation

Future<void> incrementAllMinor() async {
  final packages = getPackages();
  for (final package in packages) {
    await package.incrementMinor();
  }
}