sass --update和sass --watch之间有什么区别。为什么我不能找到你在输入sass时提供的所有常用选项的参考--help
答案 0 :(得分:1)
两件事
1:如果您输入sass --help
,您应该会看到一个类似于此的帮助页面:
如果没有,您可能会遇到更深层次的问题。
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
将监视更改并在修改源文件时重新编译。