| Index: build.dart
|
| diff --git a/build.dart b/build.dart
|
| index 7201edf37eb97a4ecce7bf57e81006a46c4eb9c7..5392a58784d5da7a7487f4077e7799d6b609eb61 100755
|
| --- a/build.dart
|
| +++ b/build.dart
|
| @@ -6,10 +6,9 @@
|
| /** Build logic that lets the Dart editor build examples in the background. */
|
| library build;
|
| import 'package:web_ui/component_build.dart';
|
| -import 'dart:io';
|
|
|
| -void main() {
|
| - build(new Options().arguments, [
|
| +void main(args) {
|
| + build(args, [
|
| 'example/component/news/web/index.html',
|
| 'example/explainer/clickcount.html',
|
| 'example/explainer/countcomponent.html',
|
|
|