memlab 1.0.8-alpha → 1.0.9-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # memlab
2
2
 
3
- memlab is an E2E testing and analysis framework for finding JavaScript memory
4
- leaks in Chromium. The CLI Toolbox and library provide extensible interfaces
3
+ memlab is an E2E testing and analysis framework for finding JavaScript memory
4
+ leaks in Chromium. The CLI Toolbox and library provide extensible interfaces
5
5
  for analyzing heap snapshots taken from Chrome/Chromium, Node.js, Hermes, and Electron.js.
6
6
 
7
7
  ## CLI Usage
@@ -56,7 +56,7 @@ Use `memlab analyze` to view all built-in memory analyses. For extension, view t
56
56
 
57
57
  View retainer trace of a particular object:
58
58
  ```bash
59
- memlab report --nodeId <HEAP_OBJECT_ID>
59
+ memlab trace --node-id <HEAP_OBJECT_ID>
60
60
  ```
61
61
 
62
62
  Use `memlab help` to view all CLI commands.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memlab",
3
- "version": "1.0.8-alpha",
3
+ "version": "1.0.9-alpha",
4
4
  "license": "MIT",
5
5
  "description": "memlab is a framework that analyzes memory and finds memory leaks in JavaScript applications.",
6
6
  "main": "dist/index.js",