4

我正在尝试将波旁威士忌作为依赖项添加到使用的项目中grunt-contrib-sassnode-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,而不仅仅是波旁威士忌。

我究竟做错了什么?

4

1 回答 1

11

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

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

于 2013-11-28T22:29:37.583 回答