Skip to content

Commit fd826e8

Browse files
committed
wip
1 parent 2e27283 commit fd826e8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/commands/repos/create.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 create = {
1717
description: 'Create a repository in an organization',
1818
async run (argv, importMeta, { parentName }) {

lib/commands/repos/delete.js

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

14-
/** @type {import('../../utils/meow-with-subcommands').CliSubcommand} */
14+
/** @type {import('../../utils/meow-with-subcommands.js').CliSubcommand} */
1515
export const del = {
1616
description: 'Delete a repository in an organization',
1717
async run (argv, importMeta, { parentName }) {

lib/commands/repos/index.js

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

99
const description = 'Repositories related commands'
1010

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

lib/commands/repos/update.js

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

14-
/** @type {import('../../utils/meow-with-subcommands').CliSubcommand} */
14+
/** @type {import('../../utils/meow-with-subcommands.js').CliSubcommand} */
1515
export const update = {
1616
description: 'Update a repository in an organization',
1717
async run (argv, importMeta, { parentName }) {

lib/commands/repos/view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { InputError } from '../../utils/errors.js'
1010
import { printFlagList } from '../../utils/formatting.js'
1111
// import { getDefaultKey, setupSdk } from '../../utils/sdk.js'
1212

13-
/** @type {import('../../utils/meow-with-subcommands').CliSubcommand} */
13+
/** @type {import('../../utils/meow-with-subcommands.js').CliSubcommand} */
1414
export const view = {
1515
description: 'View repositories in an organization',
1616
async run (argv, importMeta, { parentName }) {

0 commit comments

Comments
 (0)