通过在我的 build.xml 文件中使用以下脚本,我成功地将我的 SASS 编译为 CSS
<apply executable="sass.bat" dest="${css.dir}" verbose="true" force="true" failonerror="true">
<arg value="--unix-newline" />
<srcfile />
<targetfile />
<fileset dir="${sass.dir}" includes="**/*.scss,**/*.sass" excludes="**/_*" />
<firstmatchmapper>
<globmapper from="*.sass" to="*.css" />
<globmapper from="*.scss" to="*.css" />
</firstmatchmapper>
</apply>
<echo message="Done compiling scss files!" />
</target>
如何将 SASS 选项作为参数传递?例如,我想将 SASS 编译为 --style:compressed 状态