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