Skip to content

Commit 391cd79

Browse files
authored
chore: add dataset alias for 'data-set' subcommand (#224)
1 parent 13f557e commit 391cd79

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commands/data-set.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import { runDataSetDetailsCommand, runDataSetListCommand } from '../data-set/run
33
import type { DataSetCommandOptions, DataSetListCommandOptions } from '../data-set/types.js'
44
import { addAuthOptions, addProviderOptions } from '../utils/cli-options.js'
55

6-
export const dataSetCommand = new Command('data-set').description(
7-
'Inspect data sets managed through Filecoin Onchain Cloud'
8-
)
6+
export const dataSetCommand = new Command('data-set')
7+
.alias('dataset')
8+
.description('Inspect data sets managed through Filecoin Onchain Cloud')
99

1010
export const dataSetShowCommand = new Command('show')
1111
.description('Display detailed information about a data set')

0 commit comments

Comments
 (0)