Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use local deps. #1289

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions benchmark/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,9 @@ dev_dependencies:
pedantic: ^1.4.0
quiver: '>=0.21.0 <4.0.0'
test: ^1.0.0

dependency_overrides:
built_value:
path: ../built_value
built_value_generator:
path: ../built_value_generator
4 changes: 4 additions & 0 deletions built_value/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
include: package:pedantic/analysis_options.yaml

linter:
rules:
- non_constant_identifier_names
2 changes: 2 additions & 0 deletions built_value/lib/built_value.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

import 'package:meta/meta_meta.dart';

final int ABC = 3;

/// Implement this for a Built Value.
///
/// Then use built_value_generator.dart code generation functionality to
Expand Down
4 changes: 4 additions & 0 deletions built_value/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ dependencies:
dev_dependencies:
pedantic: ^1.4.0
test: ^1.16.0

dependency_overrides:
built_value_generator:
path: ../built_value_generator
4 changes: 4 additions & 0 deletions built_value_generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ dev_dependencies:
build_runner: '>=1.0.0 <3.0.0'
pedantic: ^1.4.0
test: ^1.0.0

dependency_overrides:
built_value:
path: ../built_value
6 changes: 6 additions & 0 deletions built_value_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,9 @@ dev_dependencies:
build_runner: '>=1.0.0 <3.0.0'
pedantic: ^1.4.0
test: ^1.0.0

dependency_overrides:
built_value:
path: ../built_value
built_value_generator:
path: ../built_value_generator
6 changes: 6 additions & 0 deletions chat_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,9 @@ dev_dependencies:
built_value_generator: ^8.8.1
pedantic: ^1.4.0
test: ^1.0.0

dependency_overrides:
built_value:
path: ../built_value
built_value_generator:
path: ../built_value_generator
6 changes: 6 additions & 0 deletions end_to_end_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,9 @@ dev_dependencies:
pedantic: ^1.4.0
quiver: '>=0.21.0 <4.0.0'
test: ^1.16.0

dependency_overrides:
built_value:
path: ../built_value
built_value_generator:
path: ../built_value_generator
6 changes: 6 additions & 0 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,9 @@ dev_dependencies:
pedantic: ^1.4.0
quiver: '>=0.21.0 <4.0.0'
test: ^1.0.0

dependency_overrides:
built_value:
path: ../built_value
built_value_generator:
path: ../built_value_generator
Loading