Skip to content

Commit 09494b2

Browse files
committed
fix
1 parent 0e9b16e commit 09494b2

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lib/commands/scan/create.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { createDebugLogger } from '../../utils/misc.js'
1616
import { getPackageFilesFullScans } from '../../utils/path-resolve.js'
1717
import { getDefaultKey, setupSdk } from '../../utils/sdk.js'
1818

19-
/** @type {import('../../utils/meow-with-subcommands').CliSubcommand} */
19+
/** @type {import('../../utils/meow-with-subcommands.js').CliSubcommand} */
2020
export const create = {
2121
description: 'Create a scan',
2222
async run (argv, importMeta, { parentName }) {

lib/commands/scan/delete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { handleApiCall, handleUnsuccessfulApiResponse } from '../../utils/api-he
99
import { printFlagList } from '../../utils/formatting.js'
1010
import { getDefaultKey, setupSdk } from '../../utils/sdk.js'
1111

12-
/** @type {import('../../utils/meow-with-subcommands').CliSubcommand} */
12+
/** @type {import('../../utils/meow-with-subcommands.js').CliSubcommand} */
1313
export const del = {
1414
description: 'Delete a scan',
1515
async run (argv, importMeta, { parentName }) {

lib/commands/scan/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { meowWithSubcommands } from '../../utils/meow-with-subcommands.js'
77

88
const description = 'Scans related commands'
99

10-
/** @type {import('../../utils/meow-with-subcommands').CliSubcommand} */
10+
/** @type {import('../../utils/meow-with-subcommands.js').CliSubcommand} */
1111
export const scan = {
1212
description,
1313
run: async (argv, importMeta, { parentName }) => {

lib/commands/scan/list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { prepareFlags } from '../../utils/flags.js'
1212
import { printFlagList } from '../../utils/formatting.js'
1313
import { getDefaultKey, setupSdk } from '../../utils/sdk.js'
1414

15-
/** @type {import('../../utils/meow-with-subcommands').CliSubcommand} */
15+
/** @type {import('../../utils/meow-with-subcommands.js').CliSubcommand} */
1616
export const list = {
1717
description: 'List scans for an organization',
1818
async run (argv, importMeta, { parentName }) {

lib/commands/scan/metadata.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { handleApiCall, handleUnsuccessfulApiResponse } from '../../utils/api-he
99
import { printFlagList } from '../../utils/formatting.js'
1010
import { getDefaultKey, setupSdk } from '../../utils/sdk.js'
1111

12-
/** @type {import('../../utils/meow-with-subcommands').CliSubcommand} */
12+
/** @type {import('../../utils/meow-with-subcommands.js').CliSubcommand} */
1313
export const metadata = {
1414
description: 'Get a scan\'s metadata',
1515
async run (argv, importMeta, { parentName }) {

lib/commands/scan/stream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { handleApiCall, handleUnsuccessfulApiResponse } from '../../utils/api-he
99
import { printFlagList } from '../../utils/formatting.js'
1010
import { getDefaultKey, setupSdk } from '../../utils/sdk.js'
1111

12-
/** @type {import('../../utils/meow-with-subcommands').CliSubcommand} */
12+
/** @type {import('../../utils/meow-with-subcommands.js').CliSubcommand} */
1313
export const stream = {
1414
description: 'Stream the output of a scan',
1515
async run (argv, importMeta, { parentName }) {

0 commit comments

Comments
 (0)