Skip to content

Commit 00d16d1

Browse files
committed
Minor option name and type cleanup
1 parent 22c8512 commit 00d16d1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/commands/info/handle-package-info.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export async function handlePackageInfo({
3737

3838
if (packageData) {
3939
outputPackageInfo(packageData, {
40-
name: commandName,
40+
commandName,
4141
includeAllIssues,
4242
outputKind,
4343
pkgName,

src/commands/info/output-package-info.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,16 @@ function outputPackageIssuesDetails(
6868
export function outputPackageInfo(
6969
{ data, score, severityCount }: PackageData,
7070
{
71-
name,
71+
commandName,
7272
outputKind,
7373
pkgName,
7474
pkgVersion
7575
}: {
76-
includeAllIssues: boolean
77-
name: string
76+
commandName: string
7877
outputKind: 'json' | 'markdown' | 'print'
7978
pkgName: string
8079
pkgVersion: string
80+
includeAllIssues?: boolean | undefined
8181
}
8282
): void {
8383
if (outputKind === 'json') {
@@ -133,7 +133,7 @@ export function outputPackageInfo(
133133
if (outputKind !== 'markdown') {
134134
logger.log(
135135
colors.dim(
136-
`\nOr rerun ${colors.italic(name)} using the ${colors.italic('--json')} flag to get full JSON output`
136+
`\nOr rerun ${colors.italic(commandName)} using the ${colors.italic('--json')} flag to get full JSON output`
137137
)
138138
)
139139
} else {

0 commit comments

Comments
 (0)