Last updated:
0 purchases
ast explorer cli
Ast explorer cli #
A Command-Line Interface for explorer flutter/dart simplified ast.
The goal is to have the type, name, value, offset and end in the file.
Getting Started ๐ #
If the CLI application is available on pub, activate globally via:
dart pub global activate ast_explorer_cli
copied to clipboard
Usage #
# Check unused translations
ast_explorer tree <folder-of-app>
copied to clipboard
Running locally #
dart pub global activate --source=path . && ast_explorer tree example/main.dart
copied to clipboard
Running Tests with coverage ๐งช #
To run all unit tests use the following command:
dart pub global activate coverage
dart test --coverage=coverage
dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info
copied to clipboard
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
copied to clipboard
Build version #
dart run build_runner build
copied to clipboard
Generated by the Very Good CLI ๐ค
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.