2016-09-28 29 views
1

我運行下面的任務,任務沒有完成,但任務正常工作。我使用手動回調,但沒有改變。Gulp任務沒有完成但工作正常

gulp.task('compileSrc', 
    function() { 
     const imgFilter = plugin.filter('**/*.{jpg,png,gif}', {restore: true}); 
     const fontFilter = plugin.filter('**/*.{ttf,woff,woff2,eot,svg}', {restore: true}); 
     const cssFilter = plugin.filter('**/*.css', {restore: true}); 
     const jsFilter = plugin.filter('**/*.js', {restore: true}); 
     const htmlFilter = plugin.filter('**/*.html', {restore: true}); 

     return gulp.src([paths.src + '/css/**/*.css', paths.src + '/fonts/**/*', paths.src + '/img/**/*', paths.app + '/**/*']) 
     // CSS ****************************************************************** 
      .pipe(cssFilter) 
      .pipe(plugin.concat('app.css'))     // merge all css file to one file 
      // min css file 
      .pipe(
       plugin.minCss({ 
        compatibility: 'ie8', 
        keepSpecialComments: false 
       }) 
      ) 
      // rename css file 
      .pipe(
       plugin.rename({ 
        suffix: '.min' 
       }) 
      ) 
      .pipe(gulp.dest(paths.dist + '/src/css'))   // save to hard file 
      .pipe(cssFilter.restore) 
      // Html Template ****************************************************************** 
      .pipe(htmlFilter) 
      /* minify html */ 
      .pipe(
       plugin.minHtml({ 
        collapseWhitespace: true, 
        removeComments: true 
       }) 
      ) 
      /* convert html file to angular template cache */ 
      .pipe(
       plugin.templateCache({ 
        module: 'rainCrm', 
        root: paths.app 
       }) 
      ) 
      .pipe(htmlFilter.restore) 
      // JS ****************************************************************** 
      .pipe(jsFilter) 
      .pipe(plugin.ngAnnotate()) 
      .pipe(plugin.angularFilesort())   // sort angular files 
      .pipe(plugin.concat('app.js'))   // merge all js file to one file 
      .pipe(plugin.minJs())      // min js file 
      // rename js file 
      .pipe(
       plugin.rename({ 
        suffix: '.min' 
       }) 
      ) 
      .pipe(gulp.dest(paths.dist + '/src/js'))   // save to hard file 
      .pipe(jsFilter.restore) 
      // IMG ****************************************************************** 
      .pipe(imgFilter) 
      .pipe(gulp.dest(paths.dist + '/src/img'))   // save to hard file 
      .pipe(imgFilter.restore) 
      // FONT ****************************************************************** 
      .pipe(fontFilter) 
      .pipe(gulp.dest(paths.dist + '/src/fonts'));  // save to hard file 
    } 
); 

結果:

[00:24:18] Starting 'compileSrc'... 

Process finished with exit code 0 

但低於任務完成正確的。

/* compile libraries */ 
gulp.task('compileLibs', 
    function() { 
     const jsFilter = plugin.filter('**/*.js', {restore: true}); 
     const cssFilter = plugin.filter('**/*.css', {restore: true}); 

     return gulp.src(
      plugin.mainBowerFiles({ 
       overrides: { 
        "font-awesome": { 
         main: [ 
          "css/font-awesome.min.css", 
          "fonts/**/*" 
         ] 
        }, 
        "persian-date": { 
         main: [ 
          "dist/0.1.8/persian-date-0.1.8.js" 
         ] 
        } 
       } 
      }) 
     ) 
     // CSS ****************************************************************** 
      .pipe(cssFilter) 
      .pipe(plugin.concat('libs.css'))   // merge all css file to one file 
      // min css file 
      .pipe(
       plugin.minCss({ 
        compatibility: 'ie8', 
        keepSpecialComments: false 
       }) 
      ) 
      // rename css file 
      .pipe(
       plugin.rename({ 
        suffix: '.min' 
       }) 
      ) 
      .pipe(gulp.dest(paths.dist + '/src/css')) 
      .pipe(cssFilter.restore) 
      // JS ****************************************************************** 
      .pipe(jsFilter) 
      .pipe(plugin.concat('libs.js'))   // merge all js file to one file 
      .pipe(plugin.minJs())       // min js file 
      // rename css file 
      .pipe(
       plugin.rename({ 
        suffix: '.min' 
       }) 
      ) 
      .pipe(gulp.dest(paths.dist + '/src/js')) 
      .pipe(jsFilter.restore) 
      // FONTS ****************************************************************** 
      .pipe(plugin.filter('**/*.{ttf,woff,woff2,eot,svg,png,jpg,gif}')) 
      .pipe(gulp.dest(paths.dist + '/src/fonts')); 
    } 
); 

謝謝。

+0

這並不直接回答你的問題,但我強烈建議您將自己吞任務分解成更小的邏輯塊凝聚力(即'「compileSrc」'是由任務''compileStyles「',''compileScripts」'','compileResources「')。這樣做後,這個問題很可能會跳出來。 – souldzin

回答

0

謝謝。我發現問題。

const fontFilter = plugin.filter('**/*.{ttf,woff,woff2,eot,svg}', {restore: true}); 

必須從最後一個過濾器中刪除恢復選項。 (與返回物流問題過濾器插件)

const fontFilter = plugin.filter('**/*.{ttf,woff,woff2,eot,svg}'); 
相關問題