Comparing version 0.1.0 to 0.1.1
@@ -18,4 +18,4 @@ 'use strict'; | ||
const linux = () => { | ||
const {stdout} = execa('ss', ['-tunlp']); | ||
const linux = async () => { | ||
const {stdout} = await execa('ss', ['-tunlp']); | ||
return stdout; | ||
@@ -25,3 +25,3 @@ }; | ||
const win32 = async () => { | ||
const {stdout} = execa('netstat', ['-ano']); | ||
const {stdout} = await execa('netstat', ['-ano']); | ||
return stdout; | ||
@@ -28,0 +28,0 @@ }; |
{ | ||
"name": "pid-port", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Get the ID of the process that uses a certain port", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
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
4919