This repository was archived by the owner on Feb 22, 2018. It is now read-only.
File tree 3 files changed +30
-30
lines changed
3 files changed +30
-30
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ packages:
4
4
analyzer:
5
5
description: analyzer
6
6
source: hosted
7
- version: "0.13.5 "
7
+ version: "0.18.0 "
8
8
angular:
9
9
description: angular
10
10
source: hosted
11
- version: "0.10 .0"
11
+ version: "0.13 .0"
12
12
args:
13
13
description: args
14
14
source: hosted
@@ -24,31 +24,27 @@ packages:
24
24
code_transformers:
25
25
description: code_transformers
26
26
source: hosted
27
- version: "0.1.3 "
27
+ version: "0.1.5 "
28
28
collection:
29
29
description: collection
30
30
source: hosted
31
31
version: "0.9.1"
32
32
di:
33
33
description: di
34
34
source: hosted
35
- version: "0 .0.37 "
35
+ version: "2 .0.1 "
36
36
html5lib:
37
37
description: html5lib
38
38
source: hosted
39
- version: "0.9.2 "
39
+ version: "0.10.0 "
40
40
http_server:
41
41
description: http_server
42
42
source: hosted
43
43
version: "0.9.2"
44
44
intl:
45
45
description: intl
46
46
source: hosted
47
- version: "0.9.8"
48
- js:
49
- description: js
50
- source: hosted
51
- version: "0.2.2"
47
+ version: "0.8.10+4"
52
48
logging:
53
49
description: logging
54
50
source: hosted
@@ -57,6 +53,10 @@ packages:
57
53
description: matcher
58
54
source: hosted
59
55
version: "0.10.0"
56
+ meta:
57
+ description: meta
58
+ source: hosted
59
+ version: "0.8.8"
60
60
mime:
61
61
description: mime
62
62
source: hosted
@@ -68,19 +68,15 @@ packages:
68
68
path:
69
69
description: path
70
70
source: hosted
71
- version: "1.1.0 "
71
+ version: "1.2.2 "
72
72
perf_api:
73
73
description: perf_api
74
74
source: hosted
75
75
version: "0.0.8"
76
76
route_hierarchical:
77
77
description: route_hierarchical
78
78
source: hosted
79
- version: "0.4.18"
80
- shadow_dom:
81
- description: shadow_dom
82
- source: hosted
83
- version: "0.9.2"
79
+ version: "0.4.21"
84
80
source_maps:
85
81
description: source_maps
86
82
source: hosted
@@ -89,6 +85,10 @@ packages:
89
85
description: stack_trace
90
86
source: hosted
91
87
version: "0.9.3+1"
88
+ typed_mock:
89
+ description: typed_mock
90
+ source: hosted
91
+ version: "0.0.4"
92
92
unittest:
93
93
description: unittest
94
94
source: hosted
@@ -97,3 +97,7 @@ packages:
97
97
description: utf
98
98
source: hosted
99
99
version: "0.9.0"
100
+ web_components:
101
+ description: web_components
102
+ source: hosted
103
+ version: "0.3.5+1"
Original file line number Diff line number Diff line change 1
1
name : angular_dart_demo
2
2
version : 0.0.1
3
3
dependencies :
4
- angular : 0.10.0
5
- browser : any
6
- js : any
7
- shadow_dom : any
4
+ angular : 0.13.0
8
5
http_server : any
9
- route_hierarchical : ' >=0.4.18 <0.5.0'
10
6
dev_dependencies :
11
7
unittest : any
12
8
transformers :
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ import 'package:angular_dart_demo/component/search_recipe_component.dart';
15
15
16
16
class MyAppModule extends Module {
17
17
MyAppModule () {
18
- type (RecipeBookController );
19
- type (RatingComponent );
20
- type (Tooltip );
21
- type (CategoryFilter );
22
- type (SearchRecipeComponent );
23
- type (ViewRecipeComponent );
24
- type (QueryService );
25
- value (RouteInitializerFn , recipeBookRouteInitializer);
26
- factory (NgRoutingUsePushState ,
18
+ bind (RecipeBookController );
19
+ bind (RatingComponent );
20
+ bind (Tooltip );
21
+ bind (CategoryFilter );
22
+ bind (SearchRecipeComponent );
23
+ bind (ViewRecipeComponent );
24
+ bind (QueryService );
25
+ bind (RouteInitializerFn , toValue : recipeBookRouteInitializer);
26
+ bind (NgRoutingUsePushState , toFactory :
27
27
(_) => new NgRoutingUsePushState .value (false ));
28
28
}
29
29
}
You can’t perform that action at this time.
0 commit comments