1from .cli import build, dev
2
3
4def run_dev_build() -> None:
5 # This will run by itself as a command, so it can exit()
6 dev([], standalone_mode=True)
7
8
9def run_build() -> None:
10 # Standalone mode prevents it from exit()ing
11 build([], standalone_mode=False)