Skip to content

Commit 063b145

Browse files
authored
Fix dependencies in example (#36)
1 parent 505311c commit 063b145

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ environment:
55
sdk: ">=2.0.0-dev.32.0 <2.0.0"
66

77
dependencies:
8-
angular: ^5.0.0-alpha+8
8+
angular: ^5.0.0-alpha+10
99

1010
dev_dependencies:
11-
build_runner: ^0.8.0
12-
build_web_compilers: ^0.3.4
11+
build_runner: ^0.8.2
12+
build_web_compilers: ^0.3.6

example/web/main.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
import 'package:angular/experimental.dart';
5+
import 'package:angular/angular.dart';
66

77
// ignore: uri_has_not_been_generated
88
import 'package:webdev_example_app/app_component.template.dart' as ng;
99

1010
main() {
1111
// ignore: argument_type_not_assignable
12-
bootstrapFactory(ng.AppComponentNgFactory);
12+
runApp(ng.AppComponentNgFactory);
1313
}

0 commit comments

Comments
 (0)