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

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: Created 5 years, 11 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.1
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 html5lib: '>=0.12.0 <0.13.0'
Jennifer Messerly 2015/01/29 21:32:37 fyi, these can be ^0.12.0 now (etc)
jakemac 2015/02/02 20:55:57 This would require changing the environment spec I
Jennifer Messerly 2015/02/02 21:07:51 fair point :)
13 initialize: '>=0.2.0 <0.3.0' 14 initialize: '>=0.2.0 <0.3.0'
15 path: '>=1.3.0 <2.0.0'
14 dev_dependencies: 16 dev_dependencies:
15 unittest: '>0.11.0 <0.12.0' 17 unittest: '>0.11.0 <0.12.0'
16 browser: '>0.10.0 <0.11.0' 18 browser: '>0.10.0 <0.11.0'
19 dependency_overrides:
20 initialize:
21 git:
22 url: git@github.com:dart-lang/initialize.git
Jennifer Messerly 2015/01/29 21:32:37 is the plan to fix this before publishing?
jakemac 2015/02/02 20:55:57 Yes before publishing I will definitely be removin
23 ref: library_path
17 transformers: 24 transformers:
18 - initialize: 25 - initialize:
19 entry_point: test/custom_element_proxy_test.dart 26 entry_point: test/custom_element_proxy_test.dart
20 html_entry_point: test/custom_element_proxy_test.html 27 html_entry_point: test/custom_element_proxy_test.html
28 - initialize:
29 entry_point: test/html_import_annotation_test.dart
30 html_entry_point: test/html_import_annotation_test.html
31 - web_components/build/html_import_annotation_inliner:
32 bootstrap_file: test/html_import_annotation_test.bootstrap.dart
33 html_entry_point: test/html_import_annotation_test.html
21 environment: 34 environment:
22 sdk: ">=1.4.0-dev.6.6 <2.0.0" 35 sdk: ">=1.4.0-dev.6.6 <2.0.0"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698