スクリプト タスクにインストールgulp-changed
しましたが、文字列を渡すと正常に動作します (例: 'output/')。しかし、私のプロジェクトでは、宛先をソースと同じにする関数を使用しています。
gulp.task('scripts', function(){
gulp.src([
'assets/scripts/**/*.js',
'!assets/scripts/**/_*.js',
'!assets/scripts/**/*.min.js'
])
// 1* it works fine with a string
//.pipe(gulpif(global.isWatching, changed( 'output/' ) ))
// 2* it doesn't work with the function
.pipe(gulpif(global.isWatching, changed( function(file) { return file.base; } ) ))
.pipe(include())
.on('error', console.log)
.pipe(babel({
presets: ['es2015'],
compact: true
}))
.pipe(gulpif(env === "production", uglify().on('error', gutil.log)))
.pipe(rename({ suffix: '.min' }))
//.pipe(gulp.dest( 'output/' ));
//it works if i don't apply changed with a function
.pipe(gulp.dest( function(file) { return file.base; } ));
});
私は何を間違っていますか?たぶん私は機能を変更する必要があります。私はまだdestをsrcと同じにしたいと思っています。
ありがとう