css – sass查看多个目录

前端之家收集整理的这篇文章主要介绍了css – sass查看多个目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在sass中从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如何看多个目录并正确退出

解决方法

我希望您已经尝试过了,但您可以将所有文件添加到一个命令行中:
sass --watch path/to/sass1:path/to/css1 path/to/sass2:path/to/css2 path/to/sass3:path/to/css3
原文链接:https://www.f2er.com/css/217246.html

猜你在找的CSS相关文章