chore: add dep upgrade script
This commit is contained in:
parent
4595f61961
commit
51bd138951
|
@ -45,3 +45,5 @@ app.*.map.json
|
||||||
/android/app/debug
|
/android/app/debug
|
||||||
/android/app/profile
|
/android/app/profile
|
||||||
/android/app/release
|
/android/app/release
|
||||||
|
|
||||||
|
packages/*/pubspec.lock
|
||||||
|
|
6
makefile
6
makefile
|
@ -11,3 +11,9 @@ schema:
|
||||||
|
|
||||||
format:
|
format:
|
||||||
dartfmt --overwrite lib/**/*.dart
|
dartfmt --overwrite lib/**/*.dart
|
||||||
|
|
||||||
|
upgrade:
|
||||||
|
cd packages/github_trending && flutter pub upgrade --major-versions && \
|
||||||
|
cd ../gql_github && flutter pub upgrade --major-versions && \
|
||||||
|
cd ../gql_gitlab && flutter pub upgrade --major-versions && \
|
||||||
|
cd ../.. && flutter pub upgrade --major-versions
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
# Files and directories created by pub
|
|
||||||
.dart_tool/
|
|
||||||
.packages
|
|
||||||
# Remove the following pattern if you wish to check in your lock file
|
|
||||||
pubspec.lock
|
|
||||||
|
|
||||||
# Conventional directory for build outputs
|
|
||||||
build/
|
|
||||||
|
|
||||||
# Directory created by dartdoc
|
|
||||||
doc/api/
|
|
Loading…
Reference in New Issue