Fred Lefévère-Laoide hai 1 ano
pai
achega
433a3f7505
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      tools/frontend/bundle_build.py

+ 3 - 1
tools/frontend/bundle_build.py

@@ -21,7 +21,9 @@ def build_gui(root_path: Path):
         print(f'Found taipy-gui frontend bundle in {root_path  / "taipy" / "gui" / "webapp"}.')
     else:
         subprocess.run(["npm", "ci"], cwd=root_path / "frontend" / "taipy-gui" / "dom", check=True, shell=True)
-        subprocess.run(["npm", "ci", "--omit=optional"], cwd=root_path / "frontend" / "taipy-gui", check=True, shell=True)
+        subprocess.run(
+            ["npm", "ci", "--omit=optional"], cwd=root_path / "frontend" / "taipy-gui", check=True, shell=True
+        )
         subprocess.run(["npm", "run", "build"], cwd=root_path / "frontend" / "taipy-gui", check=True, shell=True)