我有一个看起来像这样的纱线工作区 monorepo:
root
|_dependency1
|_dependency2
|_api
|_graphql
|_frontend
我正在使用很棒的纱线工作区,但是有没有关于管理启动服务等的工具。
例如目前,为了启动前端,我必须:
build the dependencies
build api
start api
build graphql
start api
build frontend
start frontend
目前,我在控制台上的单独选项卡中启动所有内容。
它非常笨拙,可以用更好的方法来做。