sidekick_core 0.11.0 sidekick_core: ^0.11.0 copied to clipboard
Reusable code pieces for sidekick CLIs. Provides a project and useful helper methods when working with files
Sidekick Core #
This project is the base for all sidekick CLIs
Usage #
import 'package:sidekick_core/sidekick_core.dart';
Future<void> main(List<String> args) async {
final runner = initializeSidekick(name: 'flg', mainProjectPath: 'dev/integration_tests/flutter_gallery');
runner.addCommand(YourCommand());
return await runner.run(args);
}