Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

logkitty

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logkitty - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

7

build/cli.js

@@ -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)

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc