运行gulp不会产生任何输出

时间:2015-12-19 00:40:04

标签: gulp

刚开始使用gulp,阅读一些教程。我在一个mac终端......

我非常简单的gulpfile:

var gulp = require('gulp');
var scripts = 'scripts/*.js';

gulp.task('copy', function() {
  // place code for your default task here
  return gulp.src(scripts)
      .pipe(gulp.dest('build/js'));
});

我跑了gulp copy'在命令行上获取一些看似它运行的输出,但不复制任何文件:

Richards-MBP:gulp-test richardlovejoy$ gulp copy
[19:30:38] Using gulpfile /Work/gulp-test/gulpfile.js
[19:30:38] Starting 'copy'...
[19:30:38] Finished 'copy' after 27 ms
  • 我在'脚本中有2个js文件'文件夹中。
  • 我最初使用的是一个更复杂的gulp文件,它也无法产生任何输出。
  • 我插入了gulp-debug,但它只显示管道中有0个文件。
  • 在撰写本文时运行最新版本的节点(5.2.0)。
  • 尝试了gulp --verbose,但它什么也没给我。

我怎么能至少看到gulp在幕后进行调试呢?

由于

0 个答案:

没有答案