萨斯看多个目录(sass watching multiple directories)

2019-06-24 16:29发布

什么是青菜正确的方式来观看从shell脚本多个目录?

我有以下的shell脚本:

sass --style compressed --watch branches/mysite/assets/css/sass:branches/mysite/assets/css &
sass --style compressed --watch branches/mysite2/themes/css/sass:branches/mysite2/themes/css &
sass --style compressed --watch trunk/assets/css/sass:trunk/assets/css

然而,这将创建3个过程,当我按Ctrl + C停止,不是所有的进程退出。

如何获得SASS正确观看多个目录和退出?

Answer 1:

我希望你已经尝试过,但你可以添加的所有文件夹到一个命令行:

sass --watch path/to/sass1:path/to/css1 path/to/sass2:path/to/css2 path/to/sass3:path/to/css3


文章来源: sass watching multiple directories