| Index: pkg/polymer/lib/deploy.dart
|
| diff --git a/pkg/polymer/lib/deploy.dart b/pkg/polymer/lib/deploy.dart
|
| index 7cc5dc1ff2e3bce76bb75f2642232094047d27e1..5fe199ddfd7c6b404a492e5da35719714944ea32 100644
|
| --- a/pkg/polymer/lib/deploy.dart
|
| +++ b/pkg/polymer/lib/deploy.dart
|
| @@ -2,24 +2,22 @@
|
| // 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.
|
|
|
| -/**
|
| - * **Note**: If you already have a `build.dart` in your application, we
|
| - * recommend to use the `package:polymer/builder.dart` library instead.
|
| -
|
| - * Temporary deploy command used to create a version of the app that can be
|
| - * compiled with dart2js and deployed. Following pub layout conventions, this
|
| - * script will treat any HTML file under a package 'web/' and 'test/'
|
| - * directories as entry points.
|
| - *
|
| - * From an application package you can run deploy by creating a small program
|
| - * as follows:
|
| - *
|
| - * import "package:polymer/deploy.dart" as deploy;
|
| - * main() => deploy.main();
|
| - *
|
| - * This library should go away once `pub deploy` can be configured to run
|
| - * barback transformers.
|
| - */
|
| +/// **Note**: If you already have a `build.dart` in your application, we
|
| +/// recommend to use the `package:polymer/builder.dart` library instead.
|
| +
|
| +/// Temporary deploy command used to create a version of the app that can be
|
| +/// compiled with dart2js and deployed. Following pub layout conventions, this
|
| +/// script will treat any HTML file under a package 'web/' and 'test/'
|
| +/// directories as entry points.
|
| +///
|
| +/// From an application package you can run deploy by creating a small program
|
| +/// as follows:
|
| +///
|
| +/// import "package:polymer/deploy.dart" as deploy;
|
| +/// main() => deploy.main();
|
| +///
|
| +/// This library should go away once `pub deploy` can be configured to run
|
| +/// barback transformers.
|
| library polymer.deploy;
|
|
|
| import 'dart:io';
|
|
|