From 8d6d468d79823818c72d1bd012991b8c72966560 Mon Sep 17 00:00:00 2001 From: Trevor Manz Date: Thu, 31 Oct 2024 13:35:20 -0400 Subject: [PATCH] feat: Bundle widget for offline support --- scripts/hatch_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/hatch_build.py b/scripts/hatch_build.py index d96f2b1..93a1bfa 100644 --- a/scripts/hatch_build.py +++ b/scripts/hatch_build.py @@ -22,4 +22,4 @@ def initialize(self, version: str, build_data: dict) -> None: return if not (ROOT / "src/quak/widget.js").exists(): - subprocess.check_call(["deno", "task", "build"], cwd=ROOT) + subprocess.check_call(["deno", "task", "build", "--bundle"], cwd=ROOT)