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

Unified Diff: sdk/lib/_internal/pub/lib/src/dart.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/dart.dart
diff --git a/sdk/lib/_internal/pub/lib/src/dart.dart b/sdk/lib/_internal/pub/lib/src/dart.dart
index 2537b5b9a00f00bdaf33edbb329463534705cc3a..28902cca82f804464f5686b89f72c66855c3e640 100644
--- a/sdk/lib/_internal/pub/lib/src/dart.dart
+++ b/sdk/lib/_internal/pub/lib/src/dart.dart
@@ -30,12 +30,17 @@ import 'utils.dart';
/// If [inputProvider] and [diagnosticHandler] are omitted, uses a default
/// [compiler.CompilerInputProvider] that loads directly from the filesystem.
/// If either is provided, both must be.
-Future<String> compile(String entrypoint, {String packageRoot,
- bool toDart: false, compiler.CompilerInputProvider inputProvider,
+Future<String> compile(String entrypoint, {
+ String packageRoot,
+ bool toDart: false,
+ bool minify: true,
+ compiler.CompilerInputProvider inputProvider,
compiler.DiagnosticHandler diagnosticHandler}) {
return new Future.sync(() {
- var options = <String>['--categories=Client,Server', '--minify'];
+ var options = <String>['--categories=Client,Server'];
if (toDart) options.add('--output-type=dart');
+ if (minify) options.add('--minify');
+
if (packageRoot == null) {
packageRoot = path.join(path.dirname(entrypoint), 'packages');
}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/serve.dart ('k') | sdk/lib/_internal/pub/test/build/minifies_js_by_default_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698