Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: pubspec.yaml

Issue 882823003: Adds @HtmlImport with both dynamic and transformer based implementations. Still need an HtmlInliner… (Closed) Base URL: git@github.com:dart-lang/web-components.git@master
Patch Set: assign logger Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 name: web_components 1 name: web_components
2 version: 0.10.1 2 version: 0.10.2-dev
3 author: Polymer.dart Authors <web-ui-dev@dartlang.org> 3 author: Polymer.dart Authors <web-ui-dev@dartlang.org>
4 homepage: https://www.dartlang.org/polymer-dart/ 4 homepage: https://www.dartlang.org/polymer-dart/
5 description: > 5 description: >
6 Polyfills for Shadow DOM, Custom Elements, and HTML Imports. 6 Polyfills for Shadow DOM, Custom Elements, and HTML Imports.
7 Custom Elements let authors define their own elements. Authors associate code 7 Custom Elements let authors define their own elements. Authors associate code
8 with custom tag names, and then use those custom tag names as they would any 8 with custom tag names, and then use those custom tag names as they would any
9 standard tag. Shadow DOM is designed to provide encapsulation for custom 9 standard tag. Shadow DOM is designed to provide encapsulation for custom
10 elements, by hiding DOM subtrees under shadow roots. HTML Imports let authors 10 elements, by hiding DOM subtrees under shadow roots. HTML Imports let authors
11 bundle code and HTML as if they were libraries. 11 bundle code and HTML as if they were libraries.
12 dependencies: 12 dependencies:
13 initialize: '>=0.2.0 <0.3.0' 13 analyzer: '>=0.22.4 <0.23.0'
14 html5lib: '>=0.12.0 <0.13.0'
15 initialize: '>=0.3.1 <0.4.0'
16 path: '>=1.3.0 <2.0.0'
14 dev_dependencies: 17 dev_dependencies:
18 code_transformers: '>=0.2.4 <0.3.0'
15 unittest: '>0.11.0 <0.12.0' 19 unittest: '>0.11.0 <0.12.0'
16 browser: '>0.10.0 <0.11.0' 20 browser: '>0.10.0 <0.11.0'
17 transformers: 21 transformers:
18 - initialize: 22 - initialize:
19 entry_point: test/custom_element_proxy_test.dart 23 entry_point: test/custom_element_proxy_test.dart
20 html_entry_point: test/custom_element_proxy_test.html 24 html_entry_point: test/custom_element_proxy_test.html
25 - initialize:
26 entry_point: test/html_import_annotation_test.dart
27 html_entry_point: test/html_import_annotation_test.html
28 - web_components/build/html_import_annotation_inliner:
29 bootstrap_file: test/html_import_annotation_test.bootstrap.dart
30 html_entry_point: test/html_import_annotation_test.html
21 environment: 31 environment:
22 sdk: ">=1.4.0-dev.6.6 <2.0.0" 32 sdk: ">=1.4.0-dev.6.6 <2.0.0"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698