@memlab/cli 1.0.0 → 1.0.1
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 +5 -9
- package/package.json +10 -5
package/README.md
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
## memlab CLI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This is the memlab CLI library. It contains all memlab commands, command-line options, and command-line interfaces.
|
|
4
|
+
The library supports adding new commands.
|
|
4
5
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
const cli = require('@memlab/cli');
|
|
9
|
-
|
|
10
|
-
// TODO: DEMONSTRATE API
|
|
11
|
-
```
|
|
6
|
+
## Full documentation
|
|
7
|
+
https://facebookincubator.github.io/memlab
|
package/package.json
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memlab/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"license": "MIT",
|
|
4
5
|
"description": "command line interface for memlab",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"cli"
|
|
7
|
-
],
|
|
8
6
|
"author": "Liang Gong <lgong@fb.com>",
|
|
9
7
|
"contributors": [],
|
|
10
|
-
"
|
|
8
|
+
"keywords": [
|
|
9
|
+
"cli",
|
|
10
|
+
"memlab",
|
|
11
|
+
"memory",
|
|
12
|
+
"leak",
|
|
13
|
+
"heap",
|
|
14
|
+
"snapshot"
|
|
15
|
+
],
|
|
11
16
|
"main": "dist/index.js",
|
|
12
17
|
"files": [
|
|
13
18
|
"dist"
|