Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit d3fceb0

Browse files
vicbtravis@travis-ci.org
authored and
travis@travis-ci.org
committed
chore(pubspec): Replace shadow_dom with web_components
The shadow_dom package is deprecated, see https://code.google.com/p/dart/issues/detail?id=18080 Closes #972
1 parent 1362f00 commit d3fceb0

File tree

7 files changed

+33
-53
lines changed

7 files changed

+33
-53
lines changed

benchmark/pubspec.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ packages:
1010
path: ".."
1111
relative: true
1212
source: path
13-
version: "0.10.0"
13+
version: "0.11.0"
1414
args:
1515
description: args
1616
source: hosted
1717
version: "0.10.0+2"
1818
barback:
1919
description: barback
2020
source: hosted
21-
version: "0.12.0"
21+
version: "0.13.0"
2222
benchmark_harness:
2323
description: benchmark_harness
2424
source: hosted
@@ -34,7 +34,7 @@ packages:
3434
collection:
3535
description: collection
3636
source: hosted
37-
version: "0.9.1"
37+
version: "0.9.2"
3838
di:
3939
description: di
4040
source: hosted
@@ -46,7 +46,7 @@ packages:
4646
intl:
4747
description: intl
4848
source: hosted
49-
version: "0.9.8"
49+
version: "0.9.9"
5050
logging:
5151
description: logging
5252
source: hosted
@@ -70,11 +70,7 @@ packages:
7070
route_hierarchical:
7171
description: route_hierarchical
7272
source: hosted
73-
version: "0.4.19"
74-
shadow_dom:
75-
description: shadow_dom
76-
source: hosted
77-
version: "0.9.2"
73+
version: "0.4.20"
7874
source_maps:
7975
description: source_maps
8076
source: hosted
@@ -91,3 +87,7 @@ packages:
9187
description: utf
9288
source: hosted
9389
version: "0.9.0"
90+
web_components:
91+
description: web_components
92+
source: hosted
93+
version: "0.3.3"

benchmark/pubspec.yaml

Lines changed: 2 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,9 @@
11
name: angular-perf
2-
version: 0.9.10
3-
authors:
4-
- Misko Hevery <misko@hevery.com>
5-
- Pavel Jbanov <pavelgj@gmail.com>
6-
- James deBoer <james@huronbox.com>
7-
- Chirayu Krishnappa <chirayu@google.com>
8-
- Matias Niemela <matias@yearofmoo.com>
9-
- Paul Rohde <paul@paulrohde.com>
10-
- Victor Berchet <victor@suumit.com>
11-
description: Angular for dart.
12-
homepage: https://angulardart.org
13-
environment:
14-
sdk: '>=1.2.0'
2+
version: 0.10.0
3+
description: Angular benchmarks
154
dependencies:
165
angular:
176
path: ..
18-
analyzer: '>=0.13.0 <0.14.0'
19-
browser: '>=0.10.0 <0.11.0'
20-
code_transformers: '>=0.1.0 <0.2.0'
21-
collection: '>=0.9.1 <1.0.0'
22-
di: '>=0.0.37 <0.1.0'
23-
html5lib: '>=0.10.0 <0.11.0'
24-
intl: '>=0.8.7 <0.10.0'
25-
perf_api: '>=0.0.8 <0.1.0'
26-
route_hierarchical: '>=0.4.7 <0.5.0'
27-
shadow_dom: '>=0.9.1 <1.0.0'
287
dev_dependencies:
298
benchmark_harness: '>=1.0.0'
309
unittest: '>=0.10.1 <0.12.0'

example/pubspec.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ packages:
1010
path: ".."
1111
relative: true
1212
source: path
13-
version: "0.10.0"
13+
version: "0.11.0"
1414
args:
1515
description: args
1616
source: hosted
@@ -30,19 +30,19 @@ packages:
3030
collection:
3131
description: collection
3232
source: hosted
33-
version: "0.9.1"
33+
version: "0.9.2"
3434
di:
3535
description: di
3636
source: hosted
3737
version: "0.0.40"
3838
html5lib:
3939
description: html5lib
4040
source: hosted
41-
version: "0.9.2"
41+
version: "0.10.0"
4242
intl:
4343
description: intl
4444
source: hosted
45-
version: "0.9.8"
45+
version: "0.9.9"
4646
logging:
4747
description: logging
4848
source: hosted
@@ -66,11 +66,7 @@ packages:
6666
route_hierarchical:
6767
description: route_hierarchical
6868
source: hosted
69-
version: "0.4.19"
70-
shadow_dom:
71-
description: shadow_dom
72-
source: hosted
73-
version: "0.9.2"
69+
version: "0.4.20"
7470
source_maps:
7571
description: source_maps
7672
source: hosted
@@ -87,3 +83,7 @@ packages:
8783
description: utf
8884
source: hosted
8985
version: "0.9.0"
86+
web_components:
87+
description: web_components
88+
source: hosted
89+
version: "0.3.3"

karma-perf.conf.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ module.exports = function(config) {
88
// all tests must be 'included', but all other libraries must be 'served' and
99
// optionally 'watched' only.
1010
files: [
11+
'packages/web_components/platform.js',
12+
'packages/web_components/dart_support.js',
1113
'benchmark/dom/*.dart',
1214
'benchmark/*_perf.dart',
1315
'test/config/init_guinness.dart',
1416
{pattern: '**/*.dart', watched: true, included: false, served: true},
15-
'packages/browser/dart.js',
16-
'packages/browser/interop.js'
17+
'packages/browser/dart.js'
1718
],
1819

1920
autoWatch: false,

karma.conf.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ module.exports = function(config) {
88
// all tests must be 'included', but all other libraries must be 'served' and
99
// optionally 'watched' only.
1010
files: [
11+
'packages/web_components/platform.js',
12+
'packages/web_components/dart_support.js',
1113
'test/*.dart',
1214
'test/**/*_spec.dart',
1315
'test/config/init_guinness.dart',
1416
{pattern: '**/*.dart', watched: true, included: false, served: true},
15-
'packages/browser/dart.js',
16-
'packages/browser/interop.js',
17-
'packages/shadow_dom/shadow_dom.debug.js'
17+
'packages/browser/dart.js'
1818
],
1919

2020
exclude: [

pubspec.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ packages:
1212
barback:
1313
description: barback
1414
source: hosted
15-
version: "0.13.0"
15+
version: "0.12.0"
1616
benchmark_harness:
1717
description: benchmark_harness
1818
source: hosted
@@ -69,10 +69,6 @@ packages:
6969
description: route_hierarchical
7070
source: hosted
7171
version: "0.4.20"
72-
shadow_dom:
73-
description: shadow_dom
74-
source: hosted
75-
version: "0.10.0"
7672
source_maps:
7773
description: source_maps
7874
source: hosted
@@ -89,3 +85,7 @@ packages:
8985
description: utf
9086
source: hosted
9187
version: "0.9.0"
88+
web_components:
89+
description: web_components
90+
source: hosted
91+
version: "0.3.4"

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ dependencies:
2424
intl: '>=0.8.7 <0.10.0'
2525
perf_api: '>=0.0.8 <0.1.0'
2626
route_hierarchical: '>=0.4.18 <0.5.0'
27-
shadow_dom: '>=0.9.1 <1.0.0'
27+
web_components: '>=0.3.3 <0.4.0'
2828
dev_dependencies:
2929
benchmark_harness: '>=1.0.0'
3030
unittest: '>=0.10.1 <0.12.0'
3131
mock: '>=0.10.0 <0.12.0'
32-
guinness: '>=0.1.3 <0.2.0'
32+
guinness: '>=0.1.3 <0.2.0'

0 commit comments

Comments
 (0)