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 4f1d12a commit 54dee0cCopy full SHA for 54dee0c
mdbook-goals/src/main.rs
@@ -69,9 +69,14 @@ enum Command {
69
/// Checks that the goal documents are well-formed, intended for use within CI
70
Check {},
71
72
+ /// Generate json file with status from tracking issues.
73
+ /// This is intended for storing alongside the book for consumption by external tools.
74
Json {
75
+ /// Milestone for which we generate tracking issue data (e.g., `2024h2`).
76
milestone: String,
77
78
+ /// Path to write the json (e.g., `book/html/api/milestone.json`).
79
+ /// If not provided, writes to stdout.
80
#[structopt(long)]
81
json_path: Option<PathBuf>,
82
},
0 commit comments