@herodevs/cli 2.0.0-beta.1 → 2.0.0-beta.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
@@ -30,7 +30,7 @@ $ npm install -g @herodevs/cli
30
30
  $ hd COMMAND
31
31
  running command...
32
32
  $ hd (--version)
33
- @herodevs/cli/2.0.0-beta.1 linux-x64 node-v22.15.0
33
+ @herodevs/cli/2.0.0-beta.2 linux-x64 node-v22.15.0
34
34
  $ hd --help [COMMAND]
35
35
  USAGE
36
36
  $ hd COMMAND
@@ -95,7 +95,7 @@ EXAMPLES
95
95
  $ hd report committers --csv
96
96
  ```
97
97
 
98
- _See code: [src/commands/report/committers.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.1/src/commands/report/committers.ts)_
98
+ _See code: [src/commands/report/committers.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.2/src/commands/report/committers.ts)_
99
99
 
100
100
  ## `hd report purls`
101
101
 
@@ -129,7 +129,7 @@ EXAMPLES
129
129
  $ hd report purls --save --csv
130
130
  ```
131
131
 
132
- _See code: [src/commands/report/purls.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.1/src/commands/report/purls.ts)_
132
+ _See code: [src/commands/report/purls.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.2/src/commands/report/purls.ts)_
133
133
 
134
134
  ## `hd scan eol`
135
135
 
@@ -163,7 +163,7 @@ EXAMPLES
163
163
  $ hd scan eol -a --dir=./my-project
164
164
  ```
165
165
 
166
- _See code: [src/commands/scan/eol.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.1/src/commands/scan/eol.ts)_
166
+ _See code: [src/commands/scan/eol.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.2/src/commands/scan/eol.ts)_
167
167
 
168
168
  ## `hd scan sbom`
169
169
 
@@ -191,7 +191,7 @@ EXAMPLES
191
191
  $ hd scan sbom --file=path/to/sbom.json
192
192
  ```
193
193
 
194
- _See code: [src/commands/scan/sbom.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.1/src/commands/scan/sbom.ts)_
194
+ _See code: [src/commands/scan/sbom.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.2/src/commands/scan/sbom.ts)_
195
195
 
196
196
  ## `hd update [CHANNEL]`
197
197
 
@@ -5,5 +5,5 @@ export const config = {
5
5
  eolReportUrl: process.env.EOL_REPORT_URL || EOL_REPORT_URL,
6
6
  graphqlHost: process.env.GRAPHQL_HOST || GRAPHQL_HOST,
7
7
  graphqlPath: process.env.GRAPHQL_PATH || GRAPHQL_PATH,
8
- showVulnCount: false,
8
+ showVulnCount: true,
9
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@herodevs/cli",
3
- "version": "2.0.0-beta.1",
3
+ "version": "2.0.0-beta.2",
4
4
  "author": "HeroDevs, Inc",
5
5
  "bin": {
6
6
  "hd": "./bin/run.js"