blob: 5013ec302c808aed9200cdd1446c26dbc57c249d [file] [log] [blame]
// Copyright (c) 2013, 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 'barback.dart';
/// Handles the `build` pub command.
class BuildCommand extends BarbackCommand {
String get name => "build";
String get description => "Deprecated command";
bool get hidden => true;
BuildCommand() {
argParser.addOption("define", hide: true);
argParser.addOption("format", hide: true);
argParser.addOption("output", hide: true);
}
}