forked from jmesserly/dart-web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.dart
executable file
·32 lines (30 loc) · 1.19 KB
/
build.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// 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.
/** 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, [
'example/component/news/index.html',
'example/explainer/clickcount.html',
'example/explainer/countcomponent.html',
'example/explainer/countcomponent5.html',
'example/explainer/counter.html',
'example/explainer/fruitsearch.html',
'example/explainer/helloworld.html',
'example/explainer/matchstrings.html',
'example/explainer/redbox.html',
'example/explainer/tableif.html',
'example/explainer/twoway.html',
'example/explainer/tictactoe.html',
'example/mdv/forms_validation/forms_validation.html',
'example/mdv/hidden/hidden.html',
'example/mdv/hidden2/hidden2.html',
'example/mdv/model/main.html',
'example/mdv/table/table.html',
'example/mdv/style/style.html',
'example/todomvc/main.html']);
}