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

Unified Diff: utils/pub/pub.dart

Issue 11308212: Add an initial "pub lish" command. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 1 month 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
« no previous file with comments | « utils/pub/oauth2.dart ('k') | utils/pub/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/pub.dart
diff --git a/utils/pub/pub.dart b/utils/pub/pub.dart
index 4c2f77e878a45d136f7f6fb7502e1f81ed8772fe..3ce10b462734f7402f18a4ffe2bb21317271d1c2 100644
--- a/utils/pub/pub.dart
+++ b/utils/pub/pub.dart
@@ -13,6 +13,7 @@ import 'dart:math';
import 'io.dart';
import 'command_help.dart';
import 'command_install.dart';
+import 'command_lish.dart';
import 'command_update.dart';
import 'command_version.dart';
import 'entrypoint.dart';
@@ -36,6 +37,7 @@ Version get pubVersion => new Version(0, 0, 0);
Map<String, PubCommand> get pubCommands => {
'help': new HelpCommand(),
'install': new InstallCommand(),
+ 'lish': new LishCommand(),
'update': new UpdateCommand(),
'version': new VersionCommand()
};
« no previous file with comments | « utils/pub/oauth2.dart ('k') | utils/pub/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698