masoneer 1.0.0
masoneer: ^1.0.0 copied to clipboard
A TUI for managing and generating Mason bricks from multiple GitHub repositories.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add masoneerWith Flutter:
$ flutter pub add masoneerThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
masoneer: ^1.0.0Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:masoneer/modules/config/data/config_repository.dart';
import 'package:masoneer/modules/config/domain/config.dart';
import 'package:masoneer/modules/github/github_def_repository.dart';
import 'package:masoneer/modules/github/github_repository.dart';
import 'package:masoneer/modules/mason/data/mason_def_repository.dart';
import 'package:masoneer/modules/mason/data/mason_repository.dart';
import 'package:masoneer/routing/custom_router.dart';
import 'package:masoneer/utils/console_clear.dart';
import 'package:masoneer/utils/spinner.dart';
import 'package:masoneer/views/home/home.dart';
import 'package:masoneer/views/mason/mason.dart';
import 'package:masoneer/views/mason/repo_selector.dart';