| Index: sdk/lib/_internal/pub/lib/src/command/build.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/command/build.dart b/sdk/lib/_internal/pub/lib/src/command/build.dart
|
| index 04d8ea61d13e60496bafb08455636a0dd922950c..440e5555149477328304c08624ba769fcfa8e5b2 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command/build.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command/build.dart
|
| @@ -21,10 +21,10 @@ final _arrow = getSpecial('\u2192', '=>');
|
|
|
| /// Handles the `build` pub command.
|
| class BuildCommand extends PubCommand {
|
| - final description = "Copy and compile all Dart entrypoints in the 'web' "
|
| - "directory.";
|
| - final usage = "pub build [options]";
|
| - final aliases = const ["deploy", "settle-up"];
|
| + String get description =>
|
| + "Copy and compile all Dart entrypoints in the 'web' directory.";
|
| + String get usage => "pub build [options]";
|
| + List<String> get aliases => const ["deploy", "settle-up"];
|
|
|
| // TODO(nweiz): make these configurable.
|
| /// The path to the source directory of the application.
|
|
|