platform/lib/src/commands/version.dart
2017-06-15 22:57:35 -04:00

13 lines
No EOL
330 B
Dart

import 'package:args/command_runner.dart';
import 'pubspec.update.g.dart';
class VersionCommand extends Command {
@override
String get name => 'version';
@override
String get description => 'Prints the currently-installed version of the Angel CLI.';
@override
run() => print('Angel CLI version $PACKAGE_VERSION');
}