| Index: lib/src/runner/configuration/args.dart
|
| diff --git a/lib/src/runner/configuration/args.dart b/lib/src/runner/configuration/args.dart
|
| index 84f59b6c82ee5d4293ae2d16e7d04397ab0e8d7a..b7ac949b7367b546419fb3df1c558dfef72c8af7 100644
|
| --- a/lib/src/runner/configuration/args.dart
|
| +++ b/lib/src/runner/configuration/args.dart
|
| @@ -24,7 +24,6 @@ final ArgParser _parser = (() {
|
| help: "Shows this usage information.");
|
| parser.addFlag("version", negatable: false,
|
| help: "Shows the package's version.");
|
| - parser.addOption("package-root", hide: true);
|
|
|
| // Note that defaultsTo declarations here are only for documentation purposes.
|
| // We pass null values rather than defaults to [new Configuration] so that it
|
| @@ -192,7 +191,6 @@ class _Parser {
|
| jsTrace: _ifParsed('js-trace'),
|
| pauseAfterLoad: _ifParsed('pause-after-load'),
|
| color: _ifParsed('color'),
|
| - packageRoot: _ifParsed('package-root'),
|
| dart2jsPath: _ifParsed('dart2js-path'),
|
| dart2jsArgs: _ifParsed('dart2js-args') as List<String>,
|
| precompiledPath: _ifParsed('precompiled'),
|
|
|