reedmace_cli 1.0.0-dev.10
reedmace_cli: ^1.0.0-dev.10 copied to clipboard
Cli tool for managing reedmace projects
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate reedmace_cliUse it
The package has the following executables:
$ reed
$ reedmace
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add reedmace_cliWith Flutter:
$ flutter pub add reedmace_cliThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
reedmace_cli: ^1.0.0-dev.10Alternatively, 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:reedmace_cli/actions/build_openapi.dart';
import 'package:reedmace_cli/actions/building_watcher.dart';
import 'package:reedmace_cli/actions/run_buildrunner.dart';
import 'package:reedmace_cli/actions/run_dev.dart';
import 'package:reedmace_cli/command.dart';
import 'package:reedmace_cli/commands/build.dart';
import 'package:reedmace_cli/commands/create.dart';
import 'package:reedmace_cli/commands/dev.dart';
import 'package:reedmace_cli/commands/openapi.dart';
import 'package:reedmace_cli/commands/pub.dart';
import 'package:reedmace_cli/commands/watch.dart';
import 'package:reedmace_cli/config.conv.g.dart';
import 'package:reedmace_cli/config.dart';
import 'package:reedmace_cli/dogs.g.dart';
import 'package:reedmace_cli/runner.dart';
import 'package:reedmace_cli/utils/common.dart';
import 'package:reedmace_cli/utils/interruptable_progress.dart';
import 'package:reedmace_cli/utils/styling.dart';