Gulp.src不是一个函数



我想使用Gulp来连接,然后最小化我的JavaScript文件。

,但我什至无法获得第一部分。我一直遇到一个错误,上面写着" Gulp.src不是函数"。

我在全球范围内和与之合作的目录中都安装了Gulp。在其他目录中,我正在使用Gulp来编译我的SASS文件。

此任务有什么问题?

'use strict';
var gulp         = require('gulp'),
    concat       = require('gulp-concat');

/* Concatenate Javascript files needed to be referenced in the header. */
gulp.task("concatHeaderJS", function() {
   gulp.scr([                                 // what to concat, can also be strings
      'inc/js/zebra_dialog.js',               // order matters
      'inc/js/gx-zebra_dialog.js',
      'inc/js/gx-sidebar-nav.js'])
   .pipe(concat("header_files_concat.js"))    // where to send result
   .pipe(gulp.dest("inc/js"));                // folder for result to end in
});

gulp.scr更改为 gulp.src。这是错别字的生活。

相关内容

  • 没有找到相关文章

最新更新