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

Unified Diff: pubspec.yaml

Issue 906413002: support multiple entry points and only html entry points (Closed) Base URL: git@github.com:dart-lang/static-init.git@master
Patch Set: update readme 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 side-by-side diff with in-line comments
Download patch
Index: pubspec.yaml
diff --git a/pubspec.yaml b/pubspec.yaml
index 06b97c5f4445d8290f562396d3e17cef4e67e41d..d5d122f9db8120c576f729919f1ffe72f589d6e0 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,11 +1,12 @@
name: initialize
-version: 0.3.1+1
+version: 0.4.0
author: Polymer.dart Authors <web@dartlang.org>
description: Generic building blocks for doing static initialization.
homepage: https://github.com/dart-lang/initialize
dependencies:
barback: '>=0.14.2 <0.16.0'
code_transformers: '>=0.2.3 <0.3.0'
+ glob: ">=1.0.4 <2.0.0"
html5lib: '>=0.12.0 <0.13.0'
path: '>=1.3.0 <2.0.0'
dev_dependencies:
@@ -18,19 +19,11 @@ transformers:
- initialize/build/loader_replacer:
$include: lib/initialize.dart
- initialize:
- $include: test/initializer_test.dart
- entry_point: test/initializer_test.dart
-- initialize:
- $include: test/initializer_cycle_error_test.dart
- entry_point: test/initializer_cycle_error_test.dart
-- initialize:
- $include: test/initializer_custom_filter_test.dart
- entry_point: test/initializer_custom_filter_test.dart
-- initialize:
- $include: test/initializer_type_filter_test.dart
- entry_point: test/initializer_type_filter_test.dart
-- initialize:
- $include: test/init_method_test.dart
- entry_point: test/init_method_test.dart
+ entry_points:
+ - test/initializer_test.dart
+ - test/initializer_cycle_error_test.dart
+ - test/initializer_custom_filter_test.dart
+ - test/initializer_type_filter_test.dart
+ - test/init_method_test.dart
Siggi Cherem (dart-lang) 2015/02/09 22:55:17 I believe you can also do: $include: - test/initi
jakemac 2015/02/09 23:41:05 Hmm, should we do that for all transformers then?
Siggi Cherem (dart-lang) 2015/02/10 01:45:48 it's mainly for iteration speed, so not entirely n
jakemac 2015/02/10 14:56:56 Done.
- $dart2js:
$exclude: '**/*.dart'
« lib/transformer.dart ('K') | « lib/transformer.dart ('k') | test/transformer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698