platform-cli/lib/src/commands/deprecated.dart
2017-08-07 21:45:37 -04:00

10 lines
252 B
Dart

import 'package:console/console.dart';
void warnDeprecated(String command, [TextPen pen]) {
pen ??= new TextPen();
pen
..yellow()
..call('The `$command` command is deprecated, and will be removed by v1.2.0.')
..call()
..reset();
}