kawaii_logos

coverage style: very good analysis License: MIT

Generated by the Very Good CLI 🤖

This CLI tool fetches all the .pngs from https://github.com/SAWARATSUKI/KawaiiLogos.git and outputs it into a single folder.


Getting Started 🚀

CLI application is not available on pub

Activate it locally via:

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

Usage

# Combine command
$ kawaii_logos combine

# Show CLI version
$ kawaii_logos --version

# Show usage help
$ kawaii_logos --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