generated from glemartret/lm_labs_app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add tool to regen project files
- Loading branch information
1 parent
8ba342c
commit 1689232
Showing
3 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -269,8 +269,8 @@ packages: | |
dependency: "direct dev" | ||
description: | ||
path: "." | ||
ref: "v0.0.3" | ||
resolved-ref: "6aca871c0de7714ae4eab3158f1f3678d271376d" | ||
ref: latest | ||
resolved-ref: d311a0a5cfb28f29be245873be6a1c993f953e0d | ||
url: "[email protected]:glemartret/extreme_flutter_lints.git" | ||
source: git | ||
version: "0.0.3" | ||
|
@@ -821,4 +821,4 @@ packages: | |
version: "3.1.2" | ||
sdks: | ||
dart: ">=3.2.0 <4.0.0" | ||
flutter: ">=3.3.0" | ||
flutter: ">=3.13.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ dev_dependencies: | |
extreme_flutter_lints: | ||
git: | ||
url: [email protected]:glemartret/extreme_flutter_lints.git | ||
ref: v0.0.3 | ||
ref: latest | ||
flutter_test: | ||
sdk: flutter | ||
freezed: ^2.4.5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
rm -rf ~/.pub-cache/ | ||
flutter pub cache repair | ||
find . -type f -name '*.g.dart' -print -delete && find . -type f -name '*.freezed.dart' -print -delete | ||
flutter clean | ||
rm pubspec.lock | ||
flutter pub get | ||
flutter packages pub run build_runner build --delete-conflicting-outputs | ||
dart pub global activate full_coverage | ||
dart pub global run full_coverage |