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

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

Issue 184113007: Support JSON output for pub build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Extend timeout. Created 6 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
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/build.dart ('k') | sdk/lib/_internal/pub/lib/src/log.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/command/list_package_dirs.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/list_package_dirs.dart b/sdk/lib/_internal/pub/lib/src/command/list_package_dirs.dart
index 31c6916ed6b2d0fb02d98387022b42d4b607eb6a..be4910a9d04a072a52ee976b249890bc3ad5f24d 100644
--- a/sdk/lib/_internal/pub/lib/src/command/list_package_dirs.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/list_package_dirs.dart
@@ -5,7 +5,6 @@
library pub.command.list_package_dirs;
import 'dart:async';
-import 'dart:convert';
import 'package:path/path.dart' as path;
@@ -27,10 +26,10 @@ class ListPackageDirsCommand extends PubCommand {
}
Future onRun() {
+ log.json.enabled = true;
+
if (!entrypoint.lockFileExists) {
- log.error(JSON.encode(
- 'Package "myapp" has no lockfile. Please run "pub get" first.'));
- return flushThenExit(exit_codes.NO_INPUT);
+ dataError('Package "myapp" has no lockfile. Please run "pub get" first.');
}
var output = {};
@@ -55,7 +54,7 @@ class ListPackageDirsCommand extends PubCommand {
output["input_files"] = [entrypoint.lockFilePath];
return Future.wait(futures).then((_) {
- log.message(JSON.encode(output));
+ log.json.message(output);
});
}
}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/build.dart ('k') | sdk/lib/_internal/pub/lib/src/log.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698