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

chore: change shape dependency to reference pub #7

Merged
merged 3 commits into from
Aug 10, 2023
Merged
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: 3 additions & 3 deletions packages/shape_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: shape_generator
description: The code generator for the shape package.
description: The code generator for the shape package. For more information,
check out the README of the shape package.
version: 0.0.1
repository: https://github.com/betterment/shape/tree/main/packages/shape_generator

Expand All @@ -12,8 +13,7 @@ dependencies:
equatable: ^2.0.2
meta: ^1.9.1
path: ^1.8.3
shape:
path: ../shape
shape: ^0.0.1
source_gen: ^1.4.0

dev_dependencies:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,9 @@ class TestFormErrors extends FormErrors<_$TestFormBody> with EquatableMixin {
/// The error for the nullableField field.
final TestValidationError? nullableField;

/// Merges this TestFormErrors with the [other] by replacing
/// any empty fields in this instance with the corresponding field in [other].
/// Merges this TestFormErrors with the [other]
/// by replacing any empty fields in this instance with the corresponding field in
/// [other] while preserving the non-empty fields in this instance.
TestFormErrors mergeWhereEmptyWith({
required TestFormErrors other,
}) {
Expand Down
6 changes: 3 additions & 3 deletions packages/shape_starter_kit/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: shape_starter_kit
description: A set of generic and commonly used form fields and functions for
use with the shape package.
use with the shape package. For more information, check out the README of the
shape package.
version: 0.0.1
repository: https://github.com/betterment/shape/tree/main/packages/shape_generator

Expand All @@ -10,8 +11,7 @@ environment:
dependencies:
equatable: ^2.0.2
meta: ^1.9.1
shape:
path: ../shape
shape: ^0.0.1

dev_dependencies:
checks: ^0.2.2
Expand Down