2

我想遍历我所有的凉亭包。所有将 sass 文件作为主要文件的文件,我都想包含在includePathsfor gulp-sass 中。

我正在使用 npm 包main-bower-files成功获取主文件(并且我过滤到仅 scss 文件)。

但是当我去编译时,我得到了以下错误(因为现在 bootstrap 是我唯一的一个):

stream.js:94
      throw er; // Unhandled stream error in pipe.
            ^
Error: file to import not found or unreadable: bootstrap

我的 gulpfile 的相关部分是

var load_paths = bower({
  base: path.join(__dirname, "bower_components"),
  filter: '**/_*.scss'
});

gulp.src(app_css_file)
.pipe(sass({
    includePaths: load_paths
}))
.pipe(concat('app.css'))
.pipe(gulp.dest('build/css'));
4

1 回答 1

1

我的问题原来是main-bower-files给你文件,而不是目录。呃。Node-sass 需要包含可导入文件的目录。

所以我必须修改我load_paths的一点点。

for (var i=0; i<load_paths.length; i++){
  // we need to use the parent directories of the main files, not the files themselves
  // so ./bower_components/bootstrap-sass-official/assets/stylesheets/_bootstrap.scss
  // becomes ./bower_components/bootstrap-sass-official/assets/stylesheets
  load_paths[i] = path.dirname(load_paths[i]);
}

这解决了它。希望这对其他人有帮助:)

于 2015-02-23T17:59:16.163 回答