Chromium Code Reviews| Index: utils/pub/pub.dart |
| =================================================================== |
| --- utils/pub/pub.dart (revision 19836) |
| +++ utils/pub/pub.dart (working copy) |
| @@ -18,6 +18,7 @@ |
| import 'command_update.dart'; |
| import 'command_uploader.dart'; |
| import 'command_version.dart'; |
| +import 'command_cache.dart'; |
| import 'entrypoint.dart'; |
| import 'exit_codes.dart' as exit_codes; |
| import 'http.dart'; |
| @@ -40,7 +41,8 @@ |
| 'publish': new LishCommand(), |
| 'update': new UpdateCommand(), |
| 'uploader': new UploaderCommand(), |
| - 'version': new VersionCommand() |
| + 'version': new VersionCommand(), |
| + 'cache': new CacheCommand() |
|
Bob Nystrom
2013/03/12 22:12:03
In alphabetical order please. :)
keertip
2013/03/13 15:55:00
Done.
|
| }; |
| for (var command in commands.values.toList()) { |
| for (var alias in command.aliases) { |