@memlab/heap-analysis 1.0.2 → 1.0.3
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/dist/PluginUtils.js +1 -0
- package/package.json +2 -1
package/dist/PluginUtils.js
CHANGED
|
@@ -362,6 +362,7 @@ function loadProcessedSnapshot(options = {}) {
|
|
|
362
362
|
const file = options.file || core_2.utils.getSnapshotFilePathWithTabType(/.*/);
|
|
363
363
|
const snapshot = yield core_2.utils.getSnapshotFromFile(file, opt);
|
|
364
364
|
core_2.analysis.preparePathFinder(snapshot);
|
|
365
|
+
core_2.info.flush();
|
|
365
366
|
return snapshot;
|
|
366
367
|
});
|
|
367
368
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memlab/heap-analysis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "heap analysis plugins for memlab",
|
|
6
6
|
"author": "Liang Gong <lgong@fb.com>",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build-pkg": "tsc",
|
|
51
51
|
"test-pkg": "jest .",
|
|
52
|
+
"publish-patch": "npm version patch --force && npm publish",
|
|
52
53
|
"clean-pkg": "rm -rf ./dist && rm -rf ./node_modules && rm -f ./tsconfig.tsbuildinfo"
|
|
53
54
|
},
|
|
54
55
|
"bugs": {
|