mirror of
https://github.com/chenasraf/btool.git
synced 2026-05-17 17:48:01 +00:00
chore: upgrade dependencies
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
## 0.1.4
|
||||
|
||||
- upgrade dependencies
|
||||
|
||||
## 0.1.3
|
||||
|
||||
- fix: don't color default log lines
|
||||
|
||||
14
README.md
14
README.md
@@ -70,6 +70,20 @@ Usage: btool <command> [...args]
|
||||
-V, --verbose Display debug output
|
||||
```
|
||||
|
||||
#### Example
|
||||
|
||||
Here is an example for a simple script that pushes the apk to the device Download folder.
|
||||
|
||||
```sh
|
||||
#!/usr/bin/env sh
|
||||
name=$(dart run btool get packageName)
|
||||
version=$(dart run btool get packageVersion)
|
||||
source="$(pwd)/build/app/outputs/flutter-apk/app-release.apk"
|
||||
target="/sdcard/Download/$name-$version.apk"
|
||||
echo "adb push $source $target"
|
||||
adb push $source $target
|
||||
```
|
||||
|
||||
## Contributing
|
||||
|
||||
I am developing this package on my free time, so any support, whether code, issues, or just stars is
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: btool
|
||||
description: Generic build helper tools for Flutter/Dart such as manipulating version, package name or application ID
|
||||
version: 0.1.3
|
||||
version: 0.1.4
|
||||
homepage: 'https://github.com/chenasraf/btool'
|
||||
|
||||
executables:
|
||||
@@ -10,10 +10,10 @@ environment:
|
||||
sdk: '>=2.18.0 <4.0.0'
|
||||
|
||||
dependencies:
|
||||
args: ^2.3.1
|
||||
args: ^2.4.2
|
||||
colorize: ^3.0.0
|
||||
file: ^6.1.4
|
||||
path: ^1.8.2
|
||||
file: ^7.0.0
|
||||
path: ^1.8.3
|
||||
|
||||
dev_dependencies:
|
||||
build:
|
||||
|
||||
Reference in New Issue
Block a user