gpt4 book ai didi

javascript - 使用 node-bourbon 设置 grunt-contrib-sass

转载 作者:搜寻专家 更新时间:2023-10-31 22:57:47 26 4
gpt4 key购买 nike

我正在尝试将 bourbon 添加为使用 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 的任何路径数组中,而不仅仅是 bourbon。

我做错了什么?

最佳答案

node-bourbon 正在使用 grunt-sass而不是 grunt-contrib-sass .这就是该选项不可用并且您收到此错误的原因。

因此,要么交换这两个 grunt 任务,要么将 includePaths 替换为 loadPath .这是 grunt-contrib-sass 中的等效选项。

关于javascript - 使用 node-bourbon 设置 grunt-contrib-sass,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20274817/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com