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, 5 insertions, 5 deletions
diff --git a/xtask/src/path.rs b/xtask/src/path.rs index a46bdda0..6f4545c2 100644 --- a/xtask/src/path.rs +++ b/xtask/src/path.rs @@ -11,14 +11,14 @@ 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") } -pub fn ts_queries() -> PathBuf { - runtime().join("queries") +pub fn lang_config() -> PathBuf { + project_root().join("languages.toml") } pub fn themes() -> PathBuf { - runtime().join("themes") + project_root().join("runtime/themes") } |