forked from dart-archive/dart-tutorials-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.dart
More file actions
22 lines (19 loc) · 907 Bytes
/
Copy pathbuild.dart
File metadata and controls
22 lines (19 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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.
import 'package:polymer/builder.dart';
void main() {
build(entryPoints: ['web/anagram.html',
'web/clickme.html',
'web/count_down.html',
'web/helloworld.html',
'web/its_all_about_you.html',
'web/mini.html',
'web/mini_with_style.html',
'web/portmanteaux.html',
'web/portmanteaux_simple.html',
'web/slambook.html',
'web/stopwatch.html',
'web/todo.html',
'web/todo_with_delete.html'], options: parseOptions(['--deploy']));
}