是否可以编辑.CSS文件而.SCSS文件不在同一根目录下?

时间:2012-04-02 01:53:07

标签: css directory sass

这样的事情:

sass --watch style.css:(other than root directory)
//or
sass --watch (other directory than .scss file):style.scss

1 个答案:

答案 0 :(得分:1)

来自sass --help的输出:

--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

你可以,没有任何限制。只需使用您调用sass的目录作为基本路径或绝对路径。例如:

sass --watch relative/path/to/a/scss/file:/absolute/path/to/a/css/file