Clone this repo:
  1. e222c56 Make `sdkPath` a getter (#100) by Lasse R.H. Nielsen · 2 weeks ago master
  2. 12cd216 Bump actions/checkout from 4.1.1 to 4.1.2 (#98) by dependabot[bot] · 4 weeks ago
  3. ffeb5d2 Bump dart-lang/setup-dart from 1.6.0 to 1.6.2 (#97) by dependabot[bot] · 3 months ago
  4. e5b38ac Bump actions/stale from 8.0.0 to 9.0.0 (#96) by dependabot[bot] · 4 months ago
  5. 91540ca blast_repo fixes (#95) by Kevin Moore · 4 months ago

Dart CI Pub package publisher

A package to help in building Dart command-line apps.

What's this?

package:cli_util provides:

  • utilities to find the Dart SDK directory (sdkPath)
  • utilities to find the settings directory for a tool (applicationConfigHome())
  • utilities to aid in showing rich CLI output and progress information (cli_logging.dart)

Locating the Dart SDK

import 'dart:io';

import 'package:cli_util/cli_util.dart';
import 'package:path/path.dart' as path;

main(args) {
  // Get SDK directory from cli_util.
  var sdkDir = sdkPath;
  
  // Do stuff... For example, print version string
  var versionFile = File(path.join(sdkDir, 'version'));
  print(versionFile.readAsStringSync());
}

Displaying output and progress

package:cli_util can also be used to help CLI tools display output and progress. It has a logging mechanism which can help differentiate between regular tool output and error messages, and can facilitate having a more verbose (-v) mode for output.

In addition, it can display an indeterminate progress spinner for longer running tasks, and optionally display the elapsed time when finished:

import 'package:cli_util/cli_logging.dart';

void main(List<String> args) async {
  var verbose = args.contains('-v');
  var logger = verbose ? Logger.verbose() : Logger.standard();

  logger.stdout('Hello world!');
  logger.trace('message 1');
  await Future.delayed(Duration(milliseconds: 200));
  logger.trace('message 2');
  logger.trace('message 3');

  var progress = logger.progress('doing some work');
  await Future.delayed(Duration(seconds: 2));
  progress.finish(showTiming: true);

  logger.stdout('All ${logger.ansi.emphasized('done')}.');
  logger.flush();
}

Features and bugs

Please file feature requests and bugs at the issue tracker.