0

今すぐ、この gulp スクリプトを停止して開始し、dist ファイルを消去して再構築し、サーバーを再起動する必要があります。

私の監視ファイルは明らかに間違っています。ファイルが編集されたときに gulp スクリプト全体を再起動するには、何を変更すればよいですか?

var gulp = require('gulp');
var connect = require('gulp-connect');
var concat = require('gulp-concat');
var clean = require('gulp-clean');

gulp.task('clean', function() {
  return gulp.src('app/scripts/dist.js').pipe(clean());
});

gulp.task('scripts', ['clean'], function(){
    gulp.src(['app/scripts/app.js', 'app/scripts/**/*.js', 'app/scripts/**/*/*.js'])
    .pipe(concat('app/scripts/dist.js'))
    .pipe(gulp.dest('.'));
});

gulp.task('webserver', function() {
  connect.server();
});


gulp.task('watch', ['scripts'], function(){
    gulp.watch('app/scripts' + '*.js', ['scripts']).on('change', function(evt) {
        changeEvent(evt);
    });
});


gulp.task('default', ['clean','scripts','webserver']);
4

2 に答える 2

0

上記の私のコメントに加えて:

デフォルトのタスクを、リストした 3 つのタスクとして設定する代わりに、次のようにします。

gulp.task('watch',function(){
    var scripts=gulp.watch(//scripts array,['scripts']);
    scripts.on('change,function(evt){
         changedEvt(evt) // remember to make sure this exists.
    });

gulp.task('default',['watch']);

    /* make sure to include watches for all the logic you want to get 
       executed within your watch tasks (similar to how I did it)

      #== That way, you can still call those tasks from a different shell prompt
          if you want, but they are set to always be executed when you 
          modify the related files.

    */
于 2014-08-27T23:51:46.380 に答える