dep_sherpa 0.1.1
dep_sherpa: ^0.1.1 copied to clipboard
Dependency risk intelligence CLI for Dart and Flutter projects.
import 'dart:io';
import 'package:dep_sherpa/cli/command_runner.dart';
/// Shows how to invoke the CLI entrypoint from Dart code.
Future<void> main() async {
final int exitCode = await DepSherpaCommandRunner().run(
const <String>['explain'],
workingDirectory: Directory.current.path,
);
stdout.writeln('dep_sherpa explain exited with code $exitCode');
}