我正在尝试将波旁威士忌作为依赖项添加到使用的项目中grunt-contrib-sass
。node-bourbon关于 grunt 和 Sass 集成有以下说法:
grunt.initConfig({
sass: {
dist: {
options: {
// THIS IS THE LINE I ADDED TO MY CONFIG
includePaths: require('bourbon').includePaths,
outputStyle: 'compressed'
},
files: {
'path/to/output.css': 'path/to/input.scss'
}
}
}
});
但是,运行 grunt 时出现以下错误:
OptionParser::InvalidOption: invalid option: --include-paths
这个错误出现在任何给定的路径数组中includePaths
,而不仅仅是波旁威士忌。
我究竟做错了什么?