Various build fixes, cleanup and details #6
|
@ -2,6 +2,7 @@
|
|||
import os
|
||||
import shutil
|
||||
import subprocess
|
||||
from sys import stderr
|
||||
|
||||
from hatchling.builders.hooks.plugin.interface import BuildHookInterface
|
||||
|
||||
|
@ -12,7 +13,7 @@ class CustomBuildHook(BuildHookInterface):
|
|||
# A hack to stop building twice on run
|
||||
if not build_data.get("force_include"):
|
||||
return
|
||||
print("Building Cista frontend...", version, build_data)
|
||||
stderr.write("🏗️ Building Cista frontend\n")
|
||||
npm = shutil.which("npm")
|
||||
if npm is None:
|
||||
raise RuntimeError(
|
||||
|
@ -21,7 +22,9 @@ class CustomBuildHook(BuildHookInterface):
|
|||
# npm --prefix doesn't work on Windows, so we chdir instead
|
||||
os.chdir("frontend")
|
||||
try:
|
||||
stderr.write(" 》npm install\n")
|
||||
subprocess.run([npm, "install"], check=True) # noqa: S603
|
||||
stderr.write("\n 》npm run build\n")
|
||||
subprocess.run([npm, "run", "build"], check=True) # noqa: S603
|
||||
finally:
|
||||
os.chdir("..")
|
||||
|
|
Loading…
Reference in New Issue
Block a user