fix precommit

This commit is contained in:
Elijah 2023-11-02 16:07:26 +00:00
parent 72d94cad22
commit 3d13baba9b

View File

@ -530,7 +530,7 @@ def install_frontend_packages(packages: set[str]):
[package_manager, "install", "--loglevel", "silly", *prefer_offline],
cwd=constants.Dirs.WEB,
shell=constants.IS_WINDOWS,
show_logs=show_logs
show_logs=show_logs,
)
processes.show_status("Installing base frontend packages", process)
@ -547,7 +547,7 @@ def install_frontend_packages(packages: set[str]):
],
cwd=constants.Dirs.WEB,
shell=constants.IS_WINDOWS,
show_logs=show_logs
show_logs=show_logs,
)
processes.show_status("Installing tailwind", process)
@ -556,7 +556,7 @@ def install_frontend_packages(packages: set[str]):
[package_manager, "add", *packages, *prefer_offline],
cwd=constants.Dirs.WEB,
shell=constants.IS_WINDOWS,
show_logs=show_logs
show_logs=show_logs,
)
processes.show_status(
"Installing frontend packages from config and components", process