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

Unified Diff: sdk/lib/_internal/pub/lib/src/command.dart

Issue 14914007: Add a "pub deploy" command. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 years, 7 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: sdk/lib/_internal/pub/lib/src/command.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command.dart b/sdk/lib/_internal/pub/lib/src/command.dart
index fb0a8423390ce0c8568814eb6e3ee2368fed516c..68bbf320f0bcf9cb11ae7081bde9b9ab646f27ee 100644
--- a/sdk/lib/_internal/pub/lib/src/command.dart
+++ b/sdk/lib/_internal/pub/lib/src/command.dart
@@ -9,6 +9,7 @@ import 'package:args/args.dart';
import 'package:pathos/path.dart' as path;
import 'command_cache.dart';
+import 'command_deploy.dart';
import 'command_help.dart';
import 'command_install.dart';
import 'command_lish.dart';
@@ -29,6 +30,7 @@ abstract class PubCommand {
static Map<String, PubCommand> get commands {
var commands = {
'cache': new CacheCommand(),
+ 'deploy': new DeployCommand(),
'help': new HelpCommand(),
'install': new InstallCommand(),
'publish': new LishCommand(),
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/command_deploy.dart » ('j') | sdk/lib/_internal/pub/lib/src/entrypoint.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698