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

Unified Diff: build.dart

Issue 20863002: Introduce boot.js: this finally makes it possible to load and run Todomvc (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 5 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 | example/component/news/test/expected/news_index_test.html.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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']);
}
« no previous file with comments | « no previous file | example/component/news/test/expected/news_index_test.html.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698