memlab 1.1.58 → 1.1.60
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.
- package/README.md +1 -1
- package/dist/index.js +2 -1
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Features:
|
|
|
15
15
|
API, and memlab will automatically compare JavaScript heap snapshots, filter
|
|
16
16
|
out memory leaks, and aggregate the results
|
|
17
17
|
- **Object-oriented heap traversing API** - Supports the creation of
|
|
18
|
-
self-defined memory leak detector, and enables programmatic analysis JS heap
|
|
18
|
+
self-defined memory leak detector, and enables programmatic analysis of JS heap
|
|
19
19
|
snapshots taken from Chromium-based browsers, Node.js, Electron.js, and Hermes
|
|
20
20
|
- **Memory CLI toolbox** - Built-in toolbox and APIs for finding memory
|
|
21
21
|
optimization opportunities (not necessarily just memory leaks)
|
package/dist/index.js
CHANGED
|
@@ -26,7 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.registerPackage =
|
|
29
|
+
exports.registerPackage = void 0;
|
|
30
30
|
/**
|
|
31
31
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
32
32
|
*
|
|
@@ -44,4 +44,5 @@ function registerPackage() {
|
|
|
44
44
|
return core_1.PackageInfoLoader.registerPackage(path_1.default.join(__dirname, '..'));
|
|
45
45
|
});
|
|
46
46
|
}
|
|
47
|
+
exports.registerPackage = registerPackage;
|
|
47
48
|
__exportStar(require("@memlab/api"), exports);
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memlab",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.60",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "memlab is a framework that analyzes memory and finds memory leaks in JavaScript applications.",
|
|
6
|
+
"author": "Liang Gong <lgong@meta.com>",
|
|
6
7
|
"main": "dist/index.js",
|
|
7
8
|
"files": [
|
|
8
9
|
"dist",
|
|
@@ -26,11 +27,12 @@
|
|
|
26
27
|
"snapshot"
|
|
27
28
|
],
|
|
28
29
|
"dependencies": {
|
|
29
|
-
"@memlab/api": "^1.0.
|
|
30
|
-
"@memlab/cli": "^1.0.
|
|
31
|
-
"@memlab/core": "^1.1.
|
|
32
|
-
"@memlab/e2e": "^1.0.
|
|
33
|
-
"@memlab/heap-analysis": "^1.0.
|
|
30
|
+
"@memlab/api": "^1.0.42",
|
|
31
|
+
"@memlab/cli": "^1.0.45",
|
|
32
|
+
"@memlab/core": "^1.1.43",
|
|
33
|
+
"@memlab/e2e": "^1.0.43",
|
|
34
|
+
"@memlab/heap-analysis": "^1.0.40",
|
|
35
|
+
"@memlab/lens": "^1.0.3",
|
|
34
36
|
"ansi": "^0.3.1",
|
|
35
37
|
"babar": "^0.2.0",
|
|
36
38
|
"chalk": "^4.0.0",
|