forked from bluesky/tiled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hatch_build.py
67 lines (60 loc) · 2.43 KB
/
hatch_build.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import os
import shutil
import subprocess
import sys
from pathlib import Path
from hatchling.builders.hooks.plugin.interface import BuildHookInterface
class CustomHook(BuildHookInterface):
"""
A custom build hook for Tiled that builds the React UI in share/tiled
"""
def initialize(self, version, build_data):
# https://hatch.pypa.io/1.1/plugins/build-hook/#hatchling.builders.hooks.plugin.interface.BuildHookInterface
# Hatchling intends for us to mutate the input build_data communicate
# that 'share/tiled/ui' contains build artifacts that should be included
# in the distribution.
# Set this irrespective of whether the build happens below. It may have
# already been done manually by the user. This simply allow-lists the
# files, however they were put there.
artifact_path = "share/tiled/ui" # must be relative
build_data["artifacts"].append(artifact_path)
if os.getenv("TILED_BUILD_SKIP_UI"):
print(
"Will skip building the Tiled web UI because TILED_BUILD_SKIP_UI is set",
file=sys.stderr,
)
return
npm_path = shutil.which("npm")
if npm_path is None:
print(
"Will skip building the Tiled web UI because 'npm' executable is not found",
file=sys.stderr,
)
return
print(
f"Building Tiled web UI using {npm_path!r}. (Set TILED_BUILD_SKIP_UI=1 to skip.)",
file=sys.stderr,
)
try:
subprocess.check_call([npm_path, "install"], cwd="web-frontend")
subprocess.check_call(
[
npm_path,
"run",
"build",
"--",
f"--base={os.environ.get('TILED_BUILD_PUBLIC_PATH', '/ui/')}",
],
cwd="web-frontend",
)
if Path(artifact_path).exists():
shutil.rmtree(artifact_path)
shutil.copytree("web-frontend/dist", artifact_path)
except Exception:
print(
f"There was an error while building the Tiled web UI using {npm_path!r}. "
"If you do not need the web UI, you can TILED_BUILD_SKIP_UI=1 to skip it; "
"the Python aspects will work fine without it.",
file=sys.stderr,
)
raise