我试图在输出CSS中获取源注释。我使用基础框架并使用Grunt和Bourbon进行编译。我已经尝试在sourceComments
中将true
设置为options
,但它还没有成功。我使用的是grunt-sass
,而不是grunt-contrib-sass
。
答案 0 :(得分:0)
我建议你使用 grunt-contrib-sass ,所有 contrib 任务都有不断更新和良好的社区。 p>
如果你使用 grunt-contib-sass 就这样使用:
sass.dev = {
options: {
style: "expanded",
lineNumber: true,
update:true
}
};