Skip to content
This repository has been archived by the owner on Sep 14, 2021. It is now read-only.

Commit

Permalink
misc: fix dependencies and override in main sample app (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Aug 6, 2018
1 parent 8952096 commit e06da50
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 41 deletions.
1 change: 0 additions & 1 deletion analysis_options.yaml
@@ -1,5 +1,4 @@
analyzer:
strong-mode: true
errors:
# TODO(nshahan) Make these errors when there is a fix for
# https://github.com/dart-lang/sdk/issues/29713
Expand Down
52 changes: 19 additions & 33 deletions example/angular_components_example/pubspec.lock
Expand Up @@ -14,35 +14,35 @@ packages:
name: angular
url: "https://pub.dartlang.org"
source: hosted
version: "5.0.0-beta+2"
version: "5.0.0-beta+3"
angular_ast:
dependency: transitive
description:
name: angular_ast
url: "https://pub.dartlang.org"
source: hosted
version: "0.5.4"
version: "0.5.5"
angular_compiler:
dependency: transitive
description:
name: angular_compiler
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.0-alpha+18"
version: "0.4.0-alpha+19"
angular_components:
dependency: "direct main"
description:
name: angular_components
url: "https://pub.dartlang.org"
source: hosted
version: "0.9.0-beta+2"
version: "0.9.0-beta+3"
angular_forms:
dependency: transitive
description:
name: angular_forms
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0-beta+2"
version: "2.0.0-beta+3"
angular_gallery:
dependency: "direct main"
description:
Expand All @@ -63,7 +63,7 @@ packages:
name: angular_router
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0-alpha+17"
version: "2.0.0-alpha+18"
app_layout_example:
dependency: "direct main"
description:
Expand All @@ -77,14 +77,14 @@ packages:
name: archive
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.0.1"
args:
dependency: transitive
description:
name: args
url: "https://pub.dartlang.org"
source: hosted
version: "1.4.4"
version: "1.5.0"
async:
dependency: transitive
description:
Expand All @@ -105,7 +105,7 @@ packages:
name: build
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.7+2"
version: "0.12.7+3"
build_config:
dependency: "direct main"
description:
Expand Down Expand Up @@ -133,14 +133,14 @@ packages:
name: build_runner
url: "https://pub.dartlang.org"
source: hosted
version: "0.9.2"
version: "0.10.0"
build_runner_core:
dependency: transitive
description:
name: build_runner_core
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.2+2"
version: "0.3.0"
build_web_compilers:
dependency: "direct dev"
description:
Expand Down Expand Up @@ -175,7 +175,7 @@ packages:
name: cli_repl
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.0"
version: "0.2.0+1"
cli_util:
dependency: transitive
description:
Expand Down Expand Up @@ -224,7 +224,7 @@ packages:
name: dart2_constant
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.1+dart2"
version: "1.0.2+dart2"
dart_internal:
dependency: transitive
description:
Expand Down Expand Up @@ -532,7 +532,7 @@ packages:
name: mustache
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.1"
version: "1.0.2"
observable:
dependency: transitive
description:
Expand Down Expand Up @@ -561,13 +561,6 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.6.2"
perf_api:
dependency: transitive
description:
name: perf_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.0"
plugin:
dependency: transitive
description:
Expand All @@ -588,7 +581,7 @@ packages:
name: protobuf
url: "https://pub.dartlang.org"
source: hosted
version: "0.8.0"
version: "0.9.0+1"
pub_semver:
dependency: transitive
description:
Expand All @@ -610,20 +603,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "0.29.0+2"
quiver_hashcode:
dependency: transitive
description:
name: quiver_hashcode
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.0"
sass:
dependency: transitive
description:
name: sass
url: "https://pub.dartlang.org"
source: hosted
version: "1.10.1"
version: "1.10.3"
sass_builder:
dependency: transitive
description:
Expand Down Expand Up @@ -658,7 +644,7 @@ packages:
name: source_gen
url: "https://pub.dartlang.org"
source: hosted
version: "0.8.3+1"
version: "0.9.0"
source_maps:
dependency: transitive
description:
Expand Down Expand Up @@ -707,7 +693,7 @@ packages:
name: tuple
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.1"
version: "1.0.2"
typed_data:
dependency: transitive
description:
Expand Down Expand Up @@ -737,4 +723,4 @@ packages:
source: hosted
version: "2.1.15"
sdks:
dart: ">=2.0.0-dev.65 <=2.0.0-dev.69.3"
dart: ">=2.0.0-dev.68.0 <2.1.0"
8 changes: 1 addition & 7 deletions example/angular_components_example/pubspec.yaml
Expand Up @@ -61,11 +61,5 @@ dependencies:
path: ../scorecard_example

dev_dependencies:
build_runner: ^0.9.1
build_runner: ^0.10.0
build_web_compilers: ^0.4.0

dependency_overrides:
angular_components:
git:
url: https://github.com/dart-lang/angular_components.git
ref: github-sync

1 comment on commit e06da50

@kevmoo
Copy link
Contributor Author

@kevmoo kevmoo commented on e06da50 Aug 6, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nshahan – FYI – landed this, too!

Please sign in to comment.