commentme 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 +21 -16
- package/package.json +13 -1
package/README.md
CHANGED
|
@@ -8,33 +8,34 @@ npm install -g commentme
|
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
### Show help
|
|
12
12
|
commentme --help
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
commentme --login
|
|
14
|
+
### Signup
|
|
16
15
|
commentme --signup
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
commentme --
|
|
17
|
+
### Login
|
|
18
|
+
commentme --login
|
|
20
19
|
|
|
21
|
-
|
|
22
|
-
commentme --get
|
|
20
|
+
### Get all comments
|
|
21
|
+
commentme --get lines "file-name"
|
|
23
22
|
|
|
23
|
+
### Get a specific comment
|
|
24
|
+
commentme --get line-7-7 "file-name"
|
|
24
25
|
|
|
25
|
-
|
|
26
|
-
commentme --edit line-7-7
|
|
26
|
+
### Edit a comment
|
|
27
|
+
commentme --edit line-7-7 "file-name"
|
|
27
28
|
|
|
28
|
-
|
|
29
|
-
commentme --delete line-7-7
|
|
29
|
+
### Delete a comment
|
|
30
|
+
commentme --delete line-7-7 "file-name"
|
|
30
31
|
|
|
31
|
-
|
|
32
|
-
commentme --skim
|
|
32
|
+
### Redact comments from a file
|
|
33
|
+
commentme --skim "file-name"
|
|
33
34
|
|
|
34
|
-
|
|
35
|
-
commentme --unskim
|
|
35
|
+
### Restore comments to a file
|
|
36
|
+
commentme --unskim "file-name"
|
|
36
37
|
|
|
37
|
-
|
|
38
|
+
### Logout
|
|
38
39
|
commentme --logout
|
|
39
40
|
|
|
40
41
|
## Features
|
|
@@ -53,3 +54,7 @@ commentme --logout
|
|
|
53
54
|
## License
|
|
54
55
|
|
|
55
56
|
MIT
|
|
57
|
+
|
|
58
|
+
## Keywords
|
|
59
|
+
|
|
60
|
+
`cli` `comments` `refactor` `cleanup` `productivity` `developer-tools` `linting` `code-management` `code-quality` `redaction` `code-base` `code-comment` `code-commenting` `code-commenting-tool` `code-commenting-cli` `code-commenting-cli-tool` `code-commenting-cli-tool-for-code-quality` `code-commenting-cli-tool-for-code-management` `code-commenting-cli-tool-for-code-quality-and-management`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "commentme",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A CLI tool to manage, redact and unredact your comments keeping the codebase clutterfree.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -19,6 +19,18 @@
|
|
|
19
19
|
},
|
|
20
20
|
"author": "dotlasher",
|
|
21
21
|
"license": "MIT",
|
|
22
|
+
"keywords": [
|
|
23
|
+
"cli",
|
|
24
|
+
"comments",
|
|
25
|
+
"refactor",
|
|
26
|
+
"cleanup",
|
|
27
|
+
"productivity",
|
|
28
|
+
"developer-tools",
|
|
29
|
+
"redaction",
|
|
30
|
+
"code-quality",
|
|
31
|
+
"linting",
|
|
32
|
+
"code-management"
|
|
33
|
+
],
|
|
22
34
|
"dependencies": {
|
|
23
35
|
"acorn": "^8.15.0",
|
|
24
36
|
"bcryptjs": "^3.0.3",
|