Chromium Code Reviews| Index: build.dart |
| diff --git a/build.dart b/build.dart |
| index 3ae76606921a77b709d5da80daddf22bf5253c87..7a0cdbf0c3b00a99bcdfaf3aff00c9f10c5215a0 100755 |
| --- a/build.dart |
| +++ b/build.dart |
| @@ -9,7 +9,9 @@ import 'package:polymer/component_build.dart'; |
| import 'dart:io'; |
| void main() { |
| - build(new Options().arguments, [ |
| + var args = new Options().arguments.toList(); |
| + args.addAll(['--', '--no-css']); |
| + build(args, [ |
| 'example/component/news/web/index.html', |
| 'example/todomvc/web/index.html']); |
| } |