Skip to content
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
1 change: 0 additions & 1 deletion .cspell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ ignorePaths:
- "**/test"
- "**/web"
- "**/windows"
- "*.freezed.dart"
- "*.g.dart"
- "*.gen.dart"
- "*.lock"
Expand Down
2 changes: 1 addition & 1 deletion .fvmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"flutter": "3.38.5"
"flutter": "3.38.7"
}
7 changes: 0 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@ updates:
riverpod-dependencies:
patterns:
- "*riverpod*"
- "build_runner"
freezed-dependencies:
patterns:
- "build_runner"
- "freezed*"
- "json_annotation"
- "json_serializable"
slang-dependencies:
patterns:
- "build_runner"
Expand Down
49 changes: 0 additions & 49 deletions .vscode/freezed.code-snippets

This file was deleted.

145 changes: 0 additions & 145 deletions .vscode/riverpod.code-snippets

This file was deleted.

5 changes: 2 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
},
"dart.flutterGenerateLocalizationsOnSave": "all",
"dart.flutterSdkPath": ".fvm/versions/3.38.5",
"dart.flutterSdkPath": ".fvm/versions/3.38.7",
"dart.debugExternalPackageLibraries": false,
"dart.debugSdkLibraries": false,
"dart.experimentalRefactors": true,
Expand Down Expand Up @@ -44,7 +44,7 @@
".env.sample": ".env*",
".gitignore": ".gitattributes, .gitmodules, .gitmessage, .mailmap, .git-blame*",
"readme.*": "authors, backers.md, changelog*, citation*, code_of_conduct.md, codeowners, contributing.md, contributors, copying, credits, governance.md, history.md, license*, maintainers, readme*, security.md, sponsors.md",
"*.dart": "$(capture).g.dart, $(capture).freezed.dart, $(capture).mocks.dart"
"*.dart": "$(capture).g.dart, $(capture).mocks.dart"
},
"files.associations": {
"*.apns": "json"
Expand All @@ -57,7 +57,6 @@
"git.enableSmartCommit": true,
"search.exclude": {
"**/*.dart_tool": true,
"**/*.freezed.dart": true,
"**/*.g.dart": true,
"**/*.log": true,
"**/*.symlinks": true,
Expand Down
2 changes: 0 additions & 2 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ parsers:
ignore:
- "**/gen/**"
- "**/stub/**"
- "**/*.freezed.dart"
- "**/*.g.dart"

comment: # See: https://docs.codecov.io/docs/pull-request-comments
Expand All @@ -49,7 +48,6 @@ component_management:
- "packages/*/lib/**"
- "!**/stub/**"
- "!**/gen/**"
- "!**/*.freezed.dart"
- "!**/*.g.dart"
individual_components:
- component_id: flutter_app
Expand Down
1 change: 0 additions & 1 deletion mason-lock.json

This file was deleted.

2 changes: 0 additions & 2 deletions mason.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion packages/convenient_widgets/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: "none"
version: 1.0.0

environment:
sdk: ^3.10.4
sdk: ^3.10.7

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/core/authenticator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0
resolution: workspace

environment:
sdk: ^3.10.4
sdk: ^3.10.7

dependencies:
collection: ^1.18.0
Expand Down
2 changes: 1 addition & 1 deletion packages/core/configurator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ false_secrets:
- example/**

environment:
sdk: ^3.10.4
sdk: ^3.10.7

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/core/messenger/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ false_secrets:
- example/**

environment:
sdk: ^3.10.4
sdk: ^3.10.7

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/core/tracker/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ false_secrets:
- example/**

environment:
sdk: ^3.10.4
sdk: ^3.10.7

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/core/utils/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: 1.0.0
homepage:

environment:
sdk: ^3.10.4
sdk: ^3.10.7

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
- [Riverpod](https://riverpod.dev/)

### Code Generation
- [freezed](https://pub.dev/packages/freezed)
- [build_runner](https://pub.dev/packages/build_runner)
- [json_serializable](https://pub.dev/packages/json_serializable)
Comment on lines +29 to 30
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The "Code Generation" section lists build_runner. While build_runner is used, it's a task runner, not a code generator itself like json_serializable. It would be more accurate and consistent to list the actual code generator packages used in the project. This project uses flutter_gen_runner, go_router_builder, json_serializable, and slang for code generation.

Suggested change
- [build_runner](https://pub.dev/packages/build_runner)
- [json_serializable](https://pub.dev/packages/json_serializable)
- [flutter_gen_runner](https://pub.dev/packages/flutter_gen_runner)
- [go_router_builder](https://pub.dev/packages/go_router_builder)
- [json_serializable](https://pub.dev/packages/json_serializable)
- [slang](https://pub.dev/packages/slang)


### Hooks
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish_to: "none"
version: 1.0.0+32

environment:
sdk: ^3.10.4
sdk: ^3.10.7

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/pub_dev_api_client/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Pub.dev API client package
version: 1.0.0

environment:
sdk: ^3.10.4
sdk: ^3.10.7

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/themes/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0
publish_to: "none"

environment:
sdk: ^3.10.4
sdk: ^3.10.7

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/util/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: 1.0.0
homepage: https://github.com/altive/flutter_app_template/tree/main/packages/util

environment:
sdk: ^3.10.4
sdk: ^3.10.7

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/widget_catalog/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: "none"
version: 1.0.0

environment:
sdk: ^3.10.4
sdk: ^3.10.7

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1947,5 +1947,5 @@ packages:
source: hosted
version: "2.2.2"
sdks:
dart: ">=3.10.4 <4.0.0"
dart: ">=3.10.7 <4.0.0"
flutter: ">=3.35.0"
Loading