| Index: example/todomvc/build.dart
|
| diff --git a/example/todomvc/build.dart b/example/todomvc/build.dart
|
| index 39dbb1e238cd7a880aa551466027035f8d672414..74a1548c91eff612854b65ed7155e69dc80fc8c8 100755
|
| --- a/example/todomvc/build.dart
|
| +++ b/example/todomvc/build.dart
|
| @@ -3,9 +3,8 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -import 'dart:io';
|
| import 'package:web_ui/component_build.dart';
|
|
|
| -void main() {
|
| - build(new Options().arguments, ['web/index.html']);
|
| +void main(args) {
|
| + build(args, ['web/index.html']);
|
| }
|
|
|