| Index: pkg/polymer/lib/src/build/common.dart
|
| diff --git a/pkg/polymer/lib/src/build/common.dart b/pkg/polymer/lib/src/build/common.dart
|
| index acdd89be6a43c56b54f735e618b9b2f83768c4cd..d1b9aa0edc53c612805790db1988635ada8c3aa5 100644
|
| --- a/pkg/polymer/lib/src/build/common.dart
|
| +++ b/pkg/polymer/lib/src/build/common.dart
|
| @@ -88,14 +88,14 @@ class TransformOptions {
|
| // reachable (entry point+imported) html if deploying. See dartbug.com/17199.
|
| final LintOptions lint;
|
|
|
| - /// This will automatically inject `platform.js` from the `web_components`
|
| + /// This will automatically inject the polyfills from the `web_components`
|
| /// package in all entry points, if it is not already included.
|
| - final bool injectPlatformJs;
|
| + final bool injectWebComponentsJs;
|
|
|
| TransformOptions({entryPoints, this.inlineStylesheets,
|
| this.contentSecurityPolicy: false, this.directlyIncludeJS: true,
|
| this.releaseMode: true, this.lint: const LintOptions(),
|
| - this.injectBuildLogsInOutput: false, this.injectPlatformJs: true})
|
| + this.injectBuildLogsInOutput: false, this.injectWebComponentsJs: true})
|
| : entryPoints = entryPoints == null ? null
|
| : entryPoints.map(systemToAssetPath).toList();
|
|
|
|
|