From 84e5cc919d3971e10fc3459773c88a047a8377ff Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Tue, 5 Dec 2023 11:26:46 -0800 Subject: [PATCH] chore: add config command to docs --- docs/aspect_config.md | 28 ++++++++++++++++++++++++++++ docs/command_list.bzl | 1 + 2 files changed, 29 insertions(+) create mode 100644 docs/aspect_config.md diff --git a/docs/aspect_config.md b/docs/aspect_config.md new file mode 100644 index 000000000..54a7439c3 --- /dev/null +++ b/docs/aspect_config.md @@ -0,0 +1,28 @@ +--- +sidebar_label: "config" +--- +## aspect config + +Displays details of configurations. + +``` +aspect config [flags] +``` + +### Options + +``` + -h, --help help for config +``` + +### Options inherited from parent commands + +``` + --aspect:config string User-specified Aspect CLI config file. /dev/null indicates that all further --aspect:config flags will be ignored. + --aspect:interactive Interactive mode (e.g. prompts for user input) +``` + +### SEE ALSO + +* [aspect](aspect.md) - Aspect CLI + diff --git a/docs/command_list.bzl b/docs/command_list.bzl index 38d9d5c67..8b81df097 100644 --- a/docs/command_list.bzl +++ b/docs/command_list.bzl @@ -7,6 +7,7 @@ COMMAND_LIST = [ "build", "canonicalize-flags", "clean", + "config", "configure", "coverage", "cquery",