This is an automated email from the ASF dual-hosted git repository.
amoghdesai pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 4934192c5d2 [v3-1-test] Fix Vite dev servers not starting in breeze
(#60735) (#60745)
4934192c5d2 is described below
commit 4934192c5d2ad50b5795b60c280d146803ad3dca
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jan 19 12:39:55 2026 +0530
[v3-1-test] Fix Vite dev servers not starting in breeze (#60735) (#60745)
(cherry picked from commit ea0c8ef47e231acc5c335619e58d4f8173977d9b)
Co-authored-by: Guan-Ming (Wesley) Chiu
<[email protected]>
---
scripts/ci/prek/compile_ui_assets_dev.py | 30 ++++++++++++++++--------------
1 file changed, 16 insertions(+), 14 deletions(-)
diff --git a/scripts/ci/prek/compile_ui_assets_dev.py
b/scripts/ci/prek/compile_ui_assets_dev.py
index b927928b8b0..c2a26f5ad08 100755
--- a/scripts/ci/prek/compile_ui_assets_dev.py
+++ b/scripts/ci/prek/compile_ui_assets_dev.py
@@ -78,13 +78,14 @@ if __name__ == "__main__":
stdout=f,
stderr=subprocess.STDOUT,
)
- subprocess.Popen(
- ["pnpm", "dev"],
- cwd=os.fspath(UI_DIRECTORY),
- env=env,
- stdout=f,
- stderr=subprocess.STDOUT,
- )
+
+ subprocess.Popen(
+ ["pnpm", "dev"],
+ cwd=os.fspath(UI_DIRECTORY),
+ env=env,
+ stdout=open(UI_ASSET_OUT_DEV_MODE_FILE, "a"),
+ stderr=subprocess.STDOUT,
+ )
with open(SIMPLE_AUTH_MANAGER_UI_ASSET_OUT_DEV_MODE_FILE, "w") as f:
subprocess.run(
@@ -94,10 +95,11 @@ if __name__ == "__main__":
stdout=f,
stderr=subprocess.STDOUT,
)
- subprocess.Popen(
- ["pnpm", "dev"],
- cwd=os.fspath(SIMPLE_AUTH_MANAGER_UI_DIRECTORY),
- env=env,
- stdout=f,
- stderr=subprocess.STDOUT,
- )
+
+ subprocess.Popen(
+ ["pnpm", "dev"],
+ cwd=os.fspath(SIMPLE_AUTH_MANAGER_UI_DIRECTORY),
+ env=env,
+ stdout=open(SIMPLE_AUTH_MANAGER_UI_ASSET_OUT_DEV_MODE_FILE, "a"),
+ stderr=subprocess.STDOUT,
+ )