如何使用波本威士忌启用grunt-sass sourceComments

时间:2016-05-10 14:28:25

标签: sass gruntjs comments bourbon

我试图在输出CSS中获取源注释。我使用基础框架并使用Grunt和Bourbon进行编译。我已经尝试在sourceComments中将true设置为options,但它还没有成功。我使用的是grunt-sass,而不是grunt-contrib-sass

1 个答案:

答案 0 :(得分:0)

我建议你使用 grunt-contrib-sass ,所有 contrib 任务都有不断更新和良好的社区。

如果你使用 grunt-contib-sass 就这样使用:

sass.dev = {
        options: { 
        style: "expanded", 
        lineNumber: true,
        update:true
        }
};