gulp-expect-file在文件数组上没有按预期工作

时间:2016-10-22 13:49:12

标签: javascript gulp

我已经为gulp任务声明了JS文件列表。在运行gulp任务时它会给出错误[测试:5次测试,失败:5次测试]。请在下面找到代码和错误附件。

var expect = require('gulp-expect-file');
var jsLibSources : [
        './bower_components/angular/angular.min.js',
        './bower_components/angular-animate/angular-animate.min.js',
        './bower_components/angular-bootstrap/ui-bootstrap.min.js',
        './bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js',
      ],

    gulp.task('jsLib', function() {
            return  gulp
                    .src(jsLibSources)
                    .pipe(expect(jsLibSources))
                    .pipe(concat('libraries.min.js'))
                    .pipe(gulp.dest(destLocation + 'js/'))
        });

enter image description here

0 个答案:

没有答案