chassis_forge 2.2.1 copy "chassis_forge: ^2.2.1" to clipboard
chassis_forge: ^2.2.1 copied to clipboard

discontinued
outdated

Chassis Forge is a foundation for building modern CLI apps and tools to help with project automation and other various tasks.

example/main.dart

import 'package:chassis_forge/chassis_forge.dart';
import 'package:smart_arg_fork/smart_arg_fork.dart';

import 'ag_jq_pipe.dart';
import 'analyze.dart';
import 'deps.dart';
import 'docs.dart';
import 'format.dart'; // ignore: unused_import
import 'main.reflectable.dart';
import 'pipe.dart';

@SmartArg.reflectable
@Parser(
  description: 'Dart Chassis Forge Project Helper Tools',
)
class ExampleForge extends ChassisForge with HelpArg, VerboseArg {
  @Command()
  late AnalyzeCommand analyze;

  @Command()
  late DocsCommand docs;

  @Command()
  late DepsCommand deps;

  @Command()
  late FormatCommand format;

  @Command()
  late ExampleForge nested;

  @Command()
  late PipeCommand pipe;

  @Command()
  late AgJqPipeCommand agJq;
}

Future<void> main(List<String> arguments) async {
  initializeReflectable();
  var forge = ExampleForge();
  await forge.runWith(arguments);
}
3
likes
120
pub points
17%
popularity

Publisher

verified publisheraxrs.dev

Chassis Forge is a foundation for building modern CLI apps and tools to help with project automation and other various tasks.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (LICENSE)

Dependencies

args, glob, logging, path, process_run, reflectable, rucksack, smart_arg_fork

More

Packages that depend on chassis_forge