Comparing version 1.6.3 to 1.7.0
@@ -7,2 +7,10 @@ # Changelog | ||
## 1.7.0 - 2021-02-11 | ||
- update the way `Client` availabilty checks are done to avoid multiple checks in succession | ||
- calculate the memory usage for `measure()` when used in NodeJS | ||
- `pause()` now stops or resumes code execution properly | ||
## 1.6.3 - 2021-02-10 | ||
@@ -9,0 +17,0 @@ |
@@ -37,2 +37,3 @@ // Generated by dts-bundle-generator v5.6.0 | ||
static rayState: boolean | null; | ||
static lastRayStateCheck: number | null; | ||
protected portNumber: number; | ||
@@ -44,3 +45,3 @@ protected host: string; | ||
protected attemptAvailableReset(): void; | ||
protected updateRayAvailabilty(): Promise<void>; | ||
protected updateRayAvailabilty(): Promise<true | undefined>; | ||
protected getUrlForPath(path: string): string; | ||
@@ -184,6 +185,8 @@ send(request: Request): Promise<void>; | ||
clearCounters(): this; | ||
pause(): Promise<false | this>; | ||
pause(): Promise<unknown>; | ||
stopTime(stopwatchName?: string): this; | ||
measure(stopwatchName?: CallableFunction | string): this; | ||
protected measureClosure(closure: CallableFunction): this; | ||
protected getStopwatch(name: string): Stopwatch; | ||
protected getMeasurePayload(name: string, event: any): any; | ||
xml(xml: string): this; | ||
@@ -190,0 +193,0 @@ html(html?: string): this; |
{ | ||
"name": "node-ray", | ||
"version": "1.6.3", | ||
"version": "1.7.0", | ||
"description": "Debug NodeJS with Ray to fix problems faster", | ||
@@ -54,3 +54,5 @@ "license": "MIT", | ||
"build:standalone": "rollup --config rollup.standalone-config.js", | ||
"build:dts": "./node_modules/.bin/dts-bundle-generator -o ./dist/index.d.ts ./src/Ray.ts", | ||
"build:dts:index": "./node_modules/.bin/dts-bundle-generator -o ./dist/index.d.ts ./src/Ray.ts", | ||
"build:dts:web": "./node_modules/.bin/dts-bundle-generator -o ./dist/web.d.ts ./src/Ray.ts", | ||
"build:dts": "concurrently npm:build:dts:index npm:build:dts:web", | ||
"build:all": "concurrently npm:build:node npm:build:web npm:build:standalone", | ||
@@ -57,0 +59,0 @@ "build:dev": "concurrently npm:build:node npm:build:web", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
1880533
18
17211