Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Unified Diff: utils/pub/pub.dart

Issue 12755024: add cache list command to pub (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698