config_runner 0.0.8
config_runner: ^0.0.8 copied to clipboard
A powerful Dart CLI tool to streamline Flutter project setup by automating the creation of essential configuration and feature module boilerplate.
import 'dart:developer';
/// This is a minimal example showing how to call the CLI tool programmatically.
/// In practice, `config_runner` is used via terminal:
/// dart run config_runner:config module PJP
void main(List<String> arguments) {
log('To run this package from CLI, use:');
log('dart run config_runner:config module PJP');
}