浏览代码

Add yarn instal line to tasks

Getty Ritter 3 年之前
父节点
当前提交
9e91c8f090
共有 1 个文件被更改,包括 1 次插入0 次删除
  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