Various build fixes, cleanup and details #6
|
@ -1,4 +1,5 @@
|
||||||
# noqa: INP001
|
# noqa: INP001
|
||||||
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
from hatchling.builders.hooks.plugin.interface import BuildHookInterface
|
from hatchling.builders.hooks.plugin.interface import BuildHookInterface
|
||||||
|
@ -7,6 +8,15 @@ from hatchling.builders.hooks.plugin.interface import BuildHookInterface
|
||||||
class CustomBuildHook(BuildHookInterface):
|
class CustomBuildHook(BuildHookInterface):
|
||||||
def initialize(self, version, build_data):
|
def initialize(self, version, build_data):
|
||||||
super().initialize(version, build_data)
|
super().initialize(version, build_data)
|
||||||
print("Building Cista frontend...")
|
# A hack to stop building twice on run
|
||||||
subprocess.run("npm install --prefix frontend".split(" "), check=True) # noqa: S603
|
if not build_data.get("force_include"):
|
||||||
subprocess.run("npm run build --prefix frontend".split(" "), check=True) # noqa: S603
|
return
|
||||||
|
print("Building Cista frontend...", version, build_data)
|
||||||
|
npm = shutil.which("npm")
|
||||||
|
if npm is None:
|
||||||
|
raise RuntimeError(
|
||||||
|
"NodeJS `npm` is required for building Cista but it was not found"
|
||||||
|
)
|
||||||
|
frontend = "frontend"
|
||||||
|
subprocess.run([npm, "install", "--prefix", frontend], check=True) # noqa: S603
|
||||||
|
subprocess.run([npm, "run", "build", "--prefix", frontend], check=True) # noqa: S603
|
||||||
|
|
Loading…
Reference in New Issue
Block a user