File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ language: dart
33dart :
44 - dev
55 - stable
6- - 1.23.0
76
87dart_task :
98 - test
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ void main() {
55 var span = querySelector ('#count' ) as SpanElement ;
66
77 HttpRequest .getString ('/api' ).then ((value) {
8- return JSON .decode (value);
8+ return json .decode (value);
99 }).then ((obj) {
1010 var count = obj['count' ];
1111 span.text = count.toString ();
Original file line number Diff line number Diff line change @@ -4,11 +4,10 @@ author: Dart Team <misc@dartlang.org>
44description : A shelf handler for proxying requests to another server.
55homepage : https://github.com/dart-lang/shelf_proxy
66environment :
7- sdk : ' >=1.23.0 <2 .0.0'
7+ sdk : ' >=2.0.0-dev <3 .0.0'
88dependencies :
99 http : ' >=0.9.0 <0.12.0'
1010 path : ' >=1.0.0 <2.0.0'
1111 shelf : ' >=0.5.2 <0.8.0'
1212dev_dependencies :
13- browser : ' >=0.10.0 <0.11.0'
14- test : ' >=0.12.0 <0.13.0'
13+ test : ^1.3.0
You can’t perform that action at this time.
0 commit comments