我正在尝试在输出CSS中获取源注释。我正在使用基础框架,并与Grunt和Bourbon一起编译。我尝试过在options
中将sourceComments
设置为true
,但还没有成功。我使用的是grunt-sass
,而不是grunt-contrib-sass
。
我建议您使用grunt contrib sass,所有contrib任务都有一个不断更新的良好社区。
如果你使用grunt contib sass,就这样使用:
sass.dev = {
options: {
style: "expanded",
lineNumber: true,
update:true
}
};