刚开始使用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
我怎么能至少看到gulp在幕后进行调试呢?
由于