我想遍历我所有的凉亭包。所有将 sass 文件作为主要文件的文件,我都想包含在includePaths
for 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'));