Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'xtask/src/path.rs')
-rw-r--r--xtask/src/path.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/xtask/src/path.rs b/xtask/src/path.rs
index 62d884f2..cf8e8792 100644
--- a/xtask/src/path.rs
+++ b/xtask/src/path.rs
@@ -11,8 +11,16 @@ pub fn book_gen() -> PathBuf {
project_root().join("book/src/generated/")
}
+pub fn runtime() -> PathBuf {
+ project_root().join("runtime")
+}
+
pub fn ts_queries() -> PathBuf {
- project_root().join("runtime/queries")
+ runtime().join("queries")
+}
+
+pub fn themes() -> PathBuf {
+ runtime().join("themes")
}
pub fn lang_config() -> PathBuf {