Skip to content

Commit eabffe2

Browse files
JacksonGLfacebook-github-bot
authored andcommitted
fix(all): fix npm package.json
Summary: This diff adds some patches in the npm configuration files Reviewed By: twobassdrum Differential Revision: D74300687 fbshipit-source-id: be961abc33647d3c030d4327df7d50d56dfec266
1 parent b0e0ccf commit eabffe2

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

packages/lens/package.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@memlab/lens",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"license": "MIT",
55
"description": "MemLens is a tool for inspecting memory leaks in browser",
66
"author": "Liang Gong <lgong@meta.com>",
@@ -34,5 +34,14 @@
3434
"typescript": "^5.7.2",
3535
"webpack": "^5.97.1",
3636
"webpack-cli": "^5.1.4"
37-
}
37+
},
38+
"repository": {
39+
"type": "git",
40+
"url": "git+https://github.com/facebook/memlab.git",
41+
"directory": "packages/lens"
42+
},
43+
"bugs": {
44+
"url": "https://github.com/facebook/memlab/issues"
45+
},
46+
"homepage": "https://github.com/facebook/memlab#readme"
3847
}

packages/memlab/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "1.1.59",
44
"license": "MIT",
55
"description": "memlab is a framework that analyzes memory and finds memory leaks in JavaScript applications.",
6+
"author": "Liang Gong <lgong@meta.com>",
67
"main": "dist/index.js",
78
"files": [
89
"dist",

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"files": [],
33
"references": [
44
{ "path": "./packages/core" },
5+
{ "path": "./packages/lens" },
56
{ "path": "./packages/e2e" },
67
{ "path": "./packages/heap-analysis" },
78
{ "path": "./packages/api" },

website/docusaurus.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ const config = {
3434
'../packages/api/src/index.ts',
3535
'../packages/heap-analysis/src/index.ts',
3636
'../packages/core/src/index.ts',
37+
// '../packages/lens/src/index.ts',
38+
// '../packages/e2e/src/index.ts',
3739
],
3840
categorizeByGroup: false,
3941
cleanOutputDir: true,

0 commit comments

Comments
 (0)