| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| import 'package:args/command_runner.dart'; |
| import 'src/command_runner.dart'; |
| import 'src/pub_embeddable_command.dart'; |
| export 'src/executable.dart' |
| show |
| getExecutableForCommand, |
| CommandResolutionFailedException, |
| CommandResolutionIssue, |
| DartExecutableWithPackageConfig; |
| export 'src/pub_embeddable_command.dart' show PubAnalytics; |
| |
| /// Returns a [Command] for pub functionality that can be used by an embedding |
| /// CommandRunner. |
| /// |
| /// If [analytics] is given, pub will use that analytics instance to send |
| /// statistics about resolutions. |
| /// |
| /// [isVerbose] should return `true` (after argument resolution) if the |
| /// embedding top-level is in verbose mode. |
| Command<int> pubCommand({ |
| PubAnalytics? analytics, |
| required bool Function() isVerbose, |
| }) => |
| PubEmbeddableCommand(analytics, isVerbose); |
| |
| /// Support for the `pub` toplevel command. |
| @Deprecated('Use [pubCommand] instead.') |
| CommandRunner<int> deprecatedpubCommand() => PubCommandRunner(); |