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

Unified Diff: utils/pub/pub.dart

Issue 11434118: Add validation infrastructure for "pub lish". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years 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/entrypoint.dart ('k') | utils/pub/pubspec.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 9bb12ee39ae268de0dd126c1d1ad6a48f755dee9..1daf20d4613c2ffe833b161b393fdf620f8952c8 100644
--- a/utils/pub/pub.dart
+++ b/utils/pub/pub.dart
@@ -18,11 +18,8 @@ import 'command_update.dart';
import 'command_version.dart';
import 'entrypoint.dart';
import 'exit_codes.dart' as exit_codes;
-import 'git_source.dart';
-import 'hosted_source.dart';
import 'package.dart';
import 'pubspec.dart';
-import 'sdk_source.dart';
import 'source.dart';
import 'source_registry.dart';
import 'system_cache.dart';
@@ -97,11 +94,7 @@ main() {
cacheDir = '${Platform.environment['HOME']}/.pub-cache';
}
- var cache = new SystemCache(cacheDir);
- cache.register(new SdkSource(sdkDir));
- cache.register(new GitSource());
- cache.register(new HostedSource());
- cache.sources.setDefault('hosted');
+ var cache = new SystemCache.withSources(cacheDir, sdkDir);
// Select the command.
var command = pubCommands[globalOptions.rest[0]];
@@ -223,8 +216,7 @@ abstract class PubCommand {
// TODO(rnystrom): Will eventually need better logic to walk up
// subdirectories until we hit one that looks package-like. For now, just
// assume the cwd is it.
- future = Package.load(null, currentWorkingDir, cache.sources)
- .transform((package) => new Entrypoint(package, cache));
+ future = Entrypoint.load(currentWorkingDir, cache);
}
future = future.chain((entrypoint) {
« no previous file with comments | « utils/pub/entrypoint.dart ('k') | utils/pub/pubspec.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698