Cleaned up build script.

Signed-off-by: Pavel Kirilin <win10@list.ru>
This commit is contained in:
2024-05-02 04:10:29 +02:00
parent 8997ab35a0
commit 4d0b1e1c86

View File

@ -1,4 +1,3 @@
import os
from pathlib import Path
import shutil
import subprocess
@ -10,20 +9,7 @@ FRONTEND_DIR = CURRENT_DIR / "frontend"
DIST_DIR = FRONTEND_DIR / "dist"
class DirChanger:
"""Class for changing current directory and returning back after exit."""
def __init__(self, path: Path):
self.path = path
def __enter__(self):
os.chdir(self.path)
def __exit__(self, *args):
os.chdir(CURRENT_DIR)
def build(setup_kwargs):
def build():
"""
Build frontend and copy it to the static directory.
@ -33,19 +19,12 @@ def build(setup_kwargs):
pnpm_path = shutil.which("pnpm")
if pnpm_path is None:
raise Exception("pnpm command is not available. PLease install pnpm.")
subprocess.run(
[pnpm_path, "build"],
cwd=CURRENT_DIR / "frontend",
check=True,
)
subprocess.run([pnpm_path, "build"], cwd=FRONTEND_DIR, check=True)
print("Frontend build finished.")
print("Copying static files ...")
shutil.rmtree(STATIC_OUTPUT_DIR, ignore_errors=True)
shutil.copytree(symlinks=True, src=DIST_DIR, dst=STATIC_OUTPUT_DIR)
return setup_kwargs
if __name__ == "__main__":
build({})
build()