Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.1.4
- Add `Ansi.reversed` getter.

## 0.1.3+2
- Update Dart SDK constraint to < 3.0.0.

Expand Down
2 changes: 2 additions & 0 deletions lib/cli_logging.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ class Ansi {

String get bold => _code('\u001b[1m');

String get reversed => _code('\u001b[7m');

String get backspace => '\b';

String get bullet => io.stdout.supportsAnsiEscapes ? '•' : '-';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cli_util
version: 0.1.3+2
version: 0.1.4
author: Dart Team <misc@dartlang.org>
description: A library to help in building Dart command-line apps.
homepage: https://github.com/dart-lang/cli_util
Expand Down