Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'xtask/src/main.rs')
| -rw-r--r-- | xtask/src/main.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index fcb462f2..39de8918 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -9,14 +9,17 @@ use std::{env, error::Error}; type DynError = Box<dyn Error>; pub mod tasks { - use crate::docgen::{lang_features, typable_commands, write}; - use crate::docgen::{LANG_SUPPORT_MD_OUTPUT, TYPABLE_COMMANDS_MD_OUTPUT}; + use crate::docgen::{lang_features, static_commands, typable_commands, write}; + use crate::docgen::{ + LANG_SUPPORT_MD_OUTPUT, STATIC_COMMANDS_MD_OUTPUT, TYPABLE_COMMANDS_MD_OUTPUT, + }; use crate::querycheck::query_check; use crate::theme_check::theme_check; use crate::DynError; pub fn docgen() -> Result<(), DynError> { write(TYPABLE_COMMANDS_MD_OUTPUT, &typable_commands()?); + write(STATIC_COMMANDS_MD_OUTPUT, &static_commands()?); write(LANG_SUPPORT_MD_OUTPUT, &lang_features()?); Ok(()) } |