We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a810af7 commit ab73b05Copy full SHA for ab73b05
site/scripts/util/generate-command-data.js
@@ -3,13 +3,13 @@ import { sortOptions } from '../../../dist/utils/command-helpers.js'
3
4
const program = createMainCommand()
5
6
-/** @type {Array<import('../../src/commands/base-command.js').default>} */
+/** @type {Array<import('../../../src/commands/base-command.js').default>} */
7
// @ts-ignore typecast needed
8
const commands = program.commands.sort((cmdA, cmdB) => cmdA.name().localeCompare(cmdB.name()))
9
10
/**
11
*
12
- * @param {import('../../src/commands/base-command.js').default} command
+ * @param {import('../../../src/commands/base-command.js').default} command
13
*/
14
const parseCommand = function (command) {
15
const args = command._args.map(({ _name: name, description }) => ({
0 commit comments