Skip to content

Commit

Permalink
docs: update vendor command output format options and examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Cerebrovinny committed Feb 4, 2025
1 parent 0f83c6b commit 162ee0a
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions website/docs/cli/commands/list/list-vendor.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ This command is particularly useful when working with vendored components to:
| Flag | Description |
|------|-------------|
| `-h, --help` | Help for the vendor command |
| `-o, --output string` | Output format: table, json, yaml (default "table") |
| `-o, --format string` | Output format: table, json, csv, tsv (default "table") |
| `--delimiter string` | Delimiter for csv/tsv output (default: comma for csv, tab for tsv) |

## Examples

Expand All @@ -44,12 +45,22 @@ atmos list vendor

List vendored components in JSON format:
```shell
atmos list vendor -o json
atmos list vendor --format json
```

List vendored components in YAML format:
List vendored components in CSV format:
```shell
atmos list vendor -o yaml
atmos list vendor --format csv
```

List vendored components in TSV format:
```shell
atmos list vendor --format tsv
```

List vendored components in CSV format with custom delimiter:
```shell
atmos list vendor --format csv --delimiter ";"
```

## Related Commands
Expand Down

0 comments on commit 162ee0a

Please sign in to comment.