Comparing version 0.2.0 to 0.2.1
@@ -48,2 +48,6 @@ "use strict"; | ||
.demandCommand(1) | ||
.option('adb-path', { | ||
type: 'string', | ||
describe: 'Use custom path to ADB', | ||
}) | ||
.example('$0 tag MyTag', 'Filter logs to only include ones with MyTag tag') | ||
@@ -57,2 +61,3 @@ .example('$0 tag MyTag -I', 'Filter logs to only include ones with MyTag tag and priority INFO and above') | ||
.alias('h', 'help') | ||
.alias('v', 'version') | ||
.version().argv, { _: [command] } = _a, args = __rest(_a, ["_"]); | ||
@@ -70,3 +75,3 @@ const selectedPriorities = { | ||
try { | ||
const adbPath = adb_1.getAbdPath(); | ||
const adbPath = adb_1.getAbdPath(args['adb-path']); | ||
const targetProcessId = command === 'app' | ||
@@ -73,0 +78,0 @@ ? adb_1.getApplicationPid(adbPath, args.appId) |
{ | ||
"name": "logkitty", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Display pretty Logcat logs without Android Studio with intuitive Command Line Interface.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -43,2 +43,12 @@ # logkitty | ||
#### Common | ||
All command accept the following options: | ||
* `--adb-path <path>` - Custom path to ADB executable/binary. | ||
* `-h, --help` - Display help | ||
* `-v, --version` - Display version | ||
#### Specific | ||
`tag`, `app`, `match` and `all` commands support additional filtering options (sorted by priority): | ||
@@ -45,0 +55,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
29137
309
112
1