suitcase

A personal collection of useful scripts for everyday development, written in Dart.

MIT License

Stars
15
Committers
1

Suitcase

Generated by the Very Good CLI

A collection of useful personal scripts and tools.


TODO: Improve this README

Getting Started

If the CLI application is available on pub, activate globally via:

dart pub global activate suitcase

Or locally via:

dart pub global activate --source=path <path to this package>

Usage

# Sample command
$ suitcase sample

# Sample command optioon
$ suitcase sample --cyan

# Show CLI version
$ suitcase --version

# Show usage help
$ suitcase --help

Running Tests with coverage

To run all unit tests use the following command:

$ dart pub global activate coverage 1.2.0
$ dart test --coverage=coverage
$ dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info

To view the generated coverage report you can use lcov .

# Generate Coverage Report
$ genhtml coverage/lcov.info -o coverage/

# Open Coverage Report
$ open coverage/index.html