18

我正在尝试连接和缩小所有 Bower 包资产,包括 css。其中之一是 bootswatch 设计,它导入谷歌字体。问题是,在其上运行 css 任务会导致超时异常。我猜它正在尝试下载这些字体,并且每次都不会发生异常,因此需要很长时间。

我将如何解决它?

吞咽进口:

var gulpMinifyCss = require('gulp-minify-css');
var gulpConcatCss = require('gulp-concat-css');
var mainBowerFiles = require('main-bower-files');
var gulpFilter = require('gulp-filter');

吞咽任务:

gulp.task('compileBowerCss', function(){
    return gulp
        .src(mainBowerFiles())
        .pipe(gulpFilter('*.css'))
        .pipe(gulpConcatCss('bower.css'))
        .pipe(gulpMinifyCss())
        .pipe(gulp.dest(assetsFolder + cssFolder));
});

例外:

events.js:85
  throw er; // Unhandled 'error' event
        ^
Error: Broken @import declaration of "https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" - timeout

单独运行此任务而其他任何事情都无法正常工作(据我所知,极限测试),但与其他任务一起运行会导致上述错误。

4

2 回答 2

25

我有同样的错误。解决方案:将processImport: false选项传递给 minifyCss 管道。

.pipe(gulpMinifyCss({processImport: false}))
于 2016-05-18T09:27:59.907 回答
0

尝试使用 npm 本地化您的字体:https ://libraries.io/npm/roboto-font

于 2015-11-25T09:29:41.360 回答