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

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

Issue 47793003: Control whether pub build and serve minify or not. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. 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
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 8bcc4b954fd1bed8291358c3d12693182004d534..93dee744ff5a0bf495623f626a3c640df9a94a0e 100644
--- a/sdk/lib/_internal/pub/lib/src/command/build.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/build.dart
@@ -33,6 +33,14 @@ class BuildCommand extends PubCommand {
/// The path to the application's build output directory.
String get target => path.join(entrypoint.root.dir, 'build');
+ /// `true` if generated JavaScript should be minified.
+ bool get minify => commandOptions['minify'];
+
+ BuildCommand() {
+ commandParser.addFlag('minify', defaultsTo: true,
+ help: 'Minify generated JavaScript.');
+ }
+
Future onRun() {
if (!dirExists(source)) {
throw new ApplicationException("There is no '$source' directory.");
@@ -45,7 +53,7 @@ class BuildCommand extends PubCommand {
return entrypoint.ensureLockFileIsUpToDate().then((_) {
return entrypoint.loadPackageGraph();
}).then((graph) {
- dart2jsTransformer = new Dart2JSTransformer(graph);
+ dart2jsTransformer = new Dart2JSTransformer(graph, minify: minify);
// Since this server will only be hit by the transformer loader and isn't
// user-facing, just use an IPv4 address to avoid a weird bug on the
@@ -84,7 +92,8 @@ class BuildCommand extends PubCommand {
})).then((_) {
_copyBrowserJsFiles(dart2jsTransformer.entrypoints);
// TODO(rnystrom): Should this count include the JS files?
- log.message("Built ${assets.length} files!");
+ log.message("Built ${assets.length} "
+ "${pluralize('file', assets.length)}!");
});
}).catchError((error) {
// If [getAllAssets()] throws a BarbackException, the error has already
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/dart2js_transformer.dart ('k') | sdk/lib/_internal/pub/lib/src/command/serve.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698