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

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

Issue 64723005: Use the polling watcher by default in pub tests for now. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 7 years, 1 month 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/serve.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/serve.dart b/sdk/lib/_internal/pub/lib/src/command/serve.dart
index d3df35a2563f8e81aa1c8b9814d54db966261022..916696ef7f1054b185d28bd78f9bd2964039c4fa 100644
--- a/sdk/lib/_internal/pub/lib/src/command/serve.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/serve.dart
@@ -53,6 +53,9 @@ class ServeCommand extends PubCommand {
commandParser.addFlag('minify', defaultsTo: false,
help: 'Minify generated JavaScript.');
+
+ commandParser.addFlag('force-poll', defaultsTo: false,
+ help: 'Force the use of a polling filesystem watcher.');
}
Future onRun() {
@@ -77,9 +80,12 @@ class ServeCommand extends PubCommand {
];
}
+ var watcherType = commandOptions['force-poll'] ?
+ barback.WatcherType.POLLING : barback.WatcherType.AUTO;
// TODO(rnystrom): Allow specifying other modes.
return barback.createServer(hostname, port, graph, BarbackMode.DEBUG,
- builtInTransformers: builtInTransformers);
+ builtInTransformers: builtInTransformers,
+ watcher: watcherType);
}).then((server) {
/// This completer is used to keep pub running (by not completing) and
/// to pipe fatal errors to pub's top-level error-handling machinery.

Powered by Google App Engine
This is Rietveld 408576698