chrome-debugging-client
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -39,3 +39,3 @@ "use strict"; | ||
async function close(timeout, raceCancellation) { | ||
if (process.hasExited) { | ||
if (process.hasExited()) { | ||
return; | ||
@@ -52,3 +52,3 @@ } | ||
// if we closed then we dont really care what the error is | ||
if (!process.hasExited) { | ||
if (!process.hasExited()) { | ||
throw e; | ||
@@ -55,0 +55,0 @@ } |
{ | ||
"name": "chrome-debugging-client", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "An async/await friendly Chrome debugging client with TypeScript support", | ||
@@ -20,8 +20,8 @@ "license": "BSD-2-Clause", | ||
"dependencies": { | ||
"@tracerbench/find-chrome": "^1.0.0", | ||
"@tracerbench/message-transport": "^1.0.0", | ||
"@tracerbench/protocol-connection": "^1.0.0", | ||
"@tracerbench/spawn": "^1.0.0", | ||
"@tracerbench/spawn-chrome": "^1.0.0", | ||
"@tracerbench/websocket-message-transport": "^1.0.0", | ||
"@tracerbench/find-chrome": "^1.0.1", | ||
"@tracerbench/message-transport": "^1.0.1", | ||
"@tracerbench/protocol-connection": "^1.0.1", | ||
"@tracerbench/spawn": "^1.0.1", | ||
"@tracerbench/spawn-chrome": "^1.0.1", | ||
"@tracerbench/websocket-message-transport": "^1.0.1", | ||
"debug": "^4.1.1", | ||
@@ -42,3 +42,3 @@ "race-cancellation": "^0.4.1" | ||
}, | ||
"gitHead": "542099111824b11d9409358214732a284cf4291d" | ||
"gitHead": "e37b27bd4de7c6c49ad7ad8593263e67ad6018a0" | ||
} |
@@ -77,3 +77,3 @@ import { AttachMessageTransport } from "@tracerbench/message-transport"; | ||
async function close(timeout?: number, raceCancellation?: RaceCancellation) { | ||
if (process.hasExited) { | ||
if (process.hasExited()) { | ||
return; | ||
@@ -89,3 +89,3 @@ } | ||
// if we closed then we dont really care what the error is | ||
if (!process.hasExited) { | ||
if (!process.hasExited()) { | ||
throw e; | ||
@@ -92,0 +92,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
18958