sass update和sass watch之间的区别是什么?

时间:2016-11-16 22:08:05

标签: sass

sass --update和sass --watch之间有什么区别。为什么我不能找到你在输入sass时提供的所有常用选项的参考--help

1 个答案:

答案 0 :(得分:1)

两件事

1:如果您输入sass --help,您应该会看到一个类似于此的帮助页面:

enter image description here

如果没有,您可能会遇到更深层次的问题。

2:虽然没有明显的区别,但sass --watch的文档说:

--watch     Watch files or directories for changes.
            The location of the generated CSS can be set using a colon:
                sass --watch input.sass:output.css
                sass --watch input-dir:output-dir

虽然--update的文档说

--update    Compile files or directories to CSS.
            Locations are set like --watch.

--update仅编译文件或目录,而--watch将监视更改并在修改源文件时重新编译。