Parcourir la source

Add yarn instal line to tasks

Getty Ritter il y a 3 ans
Parent
commit
9e91c8f090
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      tasks.py

+ 1 - 0
tasks.py

@@ -46,6 +46,7 @@ def migrate(c, port=8080, host="127.0.0.1"):
 def install(c):
     """Install the listed dependencies into a virtualenv"""
     c.run("poetry install")
+    c.run("yarn install")
 
 
 @task