-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompile_typst.py
45 lines (31 loc) · 1.74 KB
/
compile_typst.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Just use `typst compile {path}`
import time
from pathlib import Path
from typing import Tuple
from scripts.compilation_interface import collect_files, compile_file_set
from scripts.script_commons import print_red, console_colors, colored_print, run_command, conspects_root_dir, \
path_is_child
def compile_one_file(path, show_compilation_output=False) -> Tuple[bool, float]:
extension = Path(path).suffix
if extension != ".typ":
print_red(f"Extension is: \"{extension}\", should be typ!!!")
assert extension == ".typ"
compiling_command = f"typst compile --root ./ {path}"
colored_print(console_colors.OKGREEN, f"Compiling {Path(path).name} file with command: {compiling_command}")
comp_start = time.perf_counter()
comp_time = time.perf_counter() - comp_start
exit_code = run_command(compiling_command)
if exit_code != 0:
colored_print(console_colors.FAIL, f"Error at compiling Typst file: {Path(path).name}!")
else:
colored_print(console_colors.OKGREEN, f"Successfully compiled Typst in {round(comp_time, 1)} seconds!")
return exit_code == 0, comp_time
def typst_file_should_be_compiled(path: str | Path):
# Ignore only files in folder ./LatexGloves/typst and all subfolders except ./LatexGloves/typst/demo
path = Path(path)
is_in_gloves_typst = path_is_child(path, conspects_root_dir / "LatexGloves" / "typst")
is_in_gloves_typst_demo = path_is_child(path, conspects_root_dir / "LatexGloves" / "typst" / "demo")
return not is_in_gloves_typst or is_in_gloves_typst_demo
if __name__ == '__main__':
files_to_compile = collect_files(".typ", typst_file_should_be_compiled)
compile_file_set(files_to_compile, compile_one_file)