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

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

Issue 48833007: Revise pub build patch. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use Future.wait() instead of Future.forEach(). Created 7 years, 2 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 | « no previous file | sdk/lib/_internal/pub/test/build/compiles_dart_entrypoints_to_dart_and_js_test.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/build.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/build.dart b/sdk/lib/_internal/pub/lib/src/command/build.dart
index 4805c0a0e3eabb7513545c9ad6a389ac33af259c..de1bccabcf224cc2b2279fdc918a69ecf0daf6ff 100644
--- a/sdk/lib/_internal/pub/lib/src/command/build.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/build.dart
@@ -67,7 +67,7 @@ class BuildCommand extends PubCommand {
// in the generated JavaScript.
assets = assets.where((asset) => asset.id.extension != ".dart");
- return Future.forEach(assets, (asset) {
+ return Future.wait(assets.map((asset) {
// Figure out the output directory for the asset, which is the same
// as the path pub serve would use to serve it.
var relativeUrl = barback.idtoUrlPath(entrypoint.root.name, asset.id);
@@ -81,7 +81,7 @@ class BuildCommand extends PubCommand {
ensureDir(path.dirname(destPath));
// TODO(rnystrom): Should we display this to the user?
return createFileFromStream(asset.read(), destPath);
- }).then((_) {
+ })).then((_) {
_copyBrowserJsFiles(dart2jsTransformer.entrypoints);
// TODO(rnystrom): Should this count include the JS files?
log.message("Built ${assets.length} files!");
@@ -101,8 +101,8 @@ class BuildCommand extends PubCommand {
/// directories next to each entrypoint in [entrypoints].
void _copyBrowserJsFiles(Iterable<AssetId> entrypoints) {
// Must depend on the browser package.
- if (!entrypoint.root.dependencies.any((dep) =>
- dep.name == 'browser' && dep.source == 'hosted')) {
+ if (!entrypoint.root.dependencies.any(
+ (dep) => dep.name == 'browser' && dep.source == 'hosted')) {
return;
}
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/test/build/compiles_dart_entrypoints_to_dart_and_js_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698