@socketsecurity/cli 0.7.1 → 0.7.2

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 CHANGED
@@ -26,9 +26,10 @@ socket report view QXU8PmK7LfH608RAwfIKdbcHgwEd_ZeWJ9QEGv05FJUQ
26
26
 
27
27
  * `socket report create <path(s)-to-folder-or-file>` - creates a report on [socket.dev](https://socket.dev/)
28
28
 
29
- Uploads the specified `package.json` and lock files and, if any folder is specified, the ones found in there. Also includes the complementary `package.json` and lock file to any specified. Currently `package-lock.json` and `yarn.lock` are supported.
29
+ Uploads the specified `package.json` and lock files for JavaScript and Python dependency manifests.
30
+ If any folder is specified, the ones found in there recursively are uploaded.
30
31
 
31
- Supports globbing such as `**/package.json`.
32
+ Supports globbing such as `**/package.json`, `**/requirements.txt`, and `**/pyproject.toml`.
32
33
 
33
34
  Ignores any file specified in your project's `.gitignore`, the `projectIgnorePaths` in your project's [`socket.yml`](https://docs.socket.dev/docs/socket-yml) and on top of that has a sensible set of [default ignores](https://www.npmjs.com/package/ignore-by-default)
34
35
 
@@ -107,12 +107,10 @@ async function setupCommand (name, description, argv, importMeta) {
107
107
  Usage
108
108
  $ ${name} <paths-to-package-folders-and-files>
109
109
 
110
- Uploads the specified "package.json" and lock files and, if any folder is
111
- specified, the ones found in there. Also includes the complementary
112
- "package.json" and lock file to any specified. Currently "package-lock.json"
113
- and "yarn.lock" are supported.
110
+ Uploads the specified "package.json" and lock files for JavaScript and Python dependency manifests.
111
+ If any folder is specified, the ones found in there recursively are uploaded.
114
112
 
115
- Supports globbing such as "**/package.json".
113
+ Supports globbing such as "**/package.json", "**/requirements.txt", and "**/pyproject.toml".
116
114
 
117
115
  Ignores any file specified in your project's ".gitignore", your project's
118
116
  "socket.yml" file's "projectIgnorePaths" and also has a sensible set of
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@socketsecurity/cli",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "CLI tool for Socket.dev",
5
5
  "homepage": "http://github.com/SocketDev/socket-cli-js",
6
6
  "repository": {